@@ -22,12 +22,12 @@ void satisfiesConditions2() {
2222
2323 @ Test
2424 void satisfiesConditions3 () {
25- assertThat (new Solution ().satisfiesConditions (new int [][] {{1 }, {2 }, {3 }}), equalTo (true ));
25+ assertThat (new Solution ().satisfiesConditions (new int [][] {{1 }, {2 }, {3 }}), equalTo (false ));
2626 }
2727
2828 @ Test
2929 void satisfiesConditions4 () {
30- assertThat (new Solution ().satisfiesConditions (new int [][] {{1 }, {1 }}), equalTo (false ));
30+ assertThat (new Solution ().satisfiesConditions (new int [][] {{1 }, {1 }}), equalTo (true ));
3131 }
3232
3333 @ Test
@@ -54,13 +54,13 @@ void satisfiesConditions8() {
5454 {0 , 1 , 0 },
5555 {1 , 0 , 1 }
5656 };
57- assertThat (new Solution ().satisfiesConditions (grid ), equalTo (true ));
57+ assertThat (new Solution ().satisfiesConditions (grid ), equalTo (false ));
5858 }
5959
6060 @ Test
6161 void satisfiesConditions9 () {
6262 assertThat (
63- new Solution ().satisfiesConditions (new int [][] {{5 , 1 }, {5 , 0 }}), equalTo (false ));
63+ new Solution ().satisfiesConditions (new int [][] {{5 , 1 }, {5 , 0 }}), equalTo (true ));
6464 }
6565
6666 @ Test
@@ -80,7 +80,7 @@ void satisfiesConditions12() {
8080 {4 , 1 , 5 , 2 },
8181 {3 , 0 , 4 , 1 }
8282 };
83- assertThat (new Solution ().satisfiesConditions (grid ), equalTo (true ));
83+ assertThat (new Solution ().satisfiesConditions (grid ), equalTo (false ));
8484 }
8585
8686 @ Test
0 commit comments