Advertisement
Guest User

Untitled

a guest
Sep 18th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. There is an infinite grid of cells. You need to find the shortest path from `start_cell` to `end_cell`. At one step you can move to any of 4 neighbor cells that share a side with the current cell.
  2.  
  3. Some of the cells are marked as `bombs`. You cannot step at those cells.
  4.  
  5. Find out the shortest path from `start_cell` to `end_cell`
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement