Apply the Lee algorithm to find the shortest distances from a start point to all other points of the following grid:
Output your answer as a 2D matrix, where the "o" symbol denotes an obstacle, "s" is a start point, a number is the shortest distance. For example, your output may look like this:
s 1 2 3 4
1 2 3 4 5
2 3 4 5 6
o o o o o