Skip to content

Instantly share code, notes, and snippets.

@dpolivaev
Created August 2, 2020 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dpolivaev/50e9c7390ebceb83b9098001001c114f to your computer and use it in GitHub Desktop.
Save dpolivaev/50e9c7390ebceb83b9098001001c114f to your computer and use it in GitHub Desktop.
Mars is represented by a 5 x 5 grid.
You are given the initial starting point (x,y) of a rover and the direction (N,S,E,W) it is facing.
The rover receives a character array of commands.
- Implement commands that move the rover forward/backward (f,b).
- Implement commands that turn the rover left/right (l,r).
- Implement wrapping from one edge of the grid to another.
- Implement obstacle detection before each move to a new square:
If a given sequence of commands encounters an obstacle,
the rover moves up to the last possible point,
aborts the sequence and reports the obstacle.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment