难题
- 如果迷宫n * m无法解析,则打印0
- 如果可以解决迷宫n * m(以1种或多种方式),则打印1。
(所以我不是在问路径,但是是否有可能解决!!!)
输入数组(2d):
[[0,0,0,0,0,0,1],[0,0,0,0,0,1,0],[0,0,0,0,1,0,0],[1,0,0,0,0,0,0]]
XXXXXXXXX
XS XX
X X X
X X X
XX FX
XXXXXXXXX
0 = can pass through
1 = can not pass trough
[0][n] is the last block of the first line
[m][0] is the first block of the last line
规则 起始位置为0,0,结束位置为n,m您只能水平和垂直移动最短代码获胜