Assignment 2: Maze
Description
Mazes require detailed steps in order to solve. Programs require detailed steps in order for them to work. Understanding how to provide instructions to solve a maze will help in understanding the sequential nature of commands in programming.
Task
Choose a maze from the S category. Draw the solution and provide instructions on how to solve the maze. Use commands: forward, left and right. Don't forget to specify the information required for each command.
fd = forward
rt = right
lt = left
go fd 1 block
turn rt 90
go fd 2 block
turn lt 90
go fd 4 block
turn lt 90
go fd 4 block
turn rt 90
go fd 1 block