We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78616fc commit 0d5a3ceCopy full SHA for 0d5a3ce
Backtracking/tests/RatInAMaze.test.js
@@ -70,11 +70,11 @@ describe('RatInAMaze', () => {
70
71
it('should work for a more complex maze that can not be solved', () => {
72
const maze = new RatInAMaze([
73
- [1, 1, 1, 1, 1, 0, 0],
74
- [0, 0, 0, 0, 1, 0, 0],
75
- [1, 1, 1, 0, 1, 0, 0],
76
- [1, 0, 1, 0, 1, 0, 0],
77
+ [1, 1, 1, 1, 1, 0, 1],
+ [0, 0, 0, 0, 1, 0, 1],
+ [1, 1, 1, 0, 1, 0, 1],
+ [1, 0, 1, 0, 1, 0, 1],
+ [1, 0, 1, 0, 1, 1, 1],
78
[1, 0, 0, 0, 0, 0, 0],
79
[1, 1, 1, 1, 1, 1, 1]
80
])
0 commit comments