Skip to content

Commit 438aa8c

Browse files
committed
Added tests
1 parent 978551a commit 438aa8c

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/test/java/g3501_3600/s3548_equal_sum_grid_partition_ii/SolutionTest.java

+9
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,13 @@ void canPartitionGrid10() {
6565
new Solution().canPartitionGrid(new int[][] {{4, 4, 4}, {2, 2, 1}, {1, 1, 1}}),
6666
equalTo(true));
6767
}
68+
69+
@Test
70+
void canPartitionGrid11() {
71+
assertThat(
72+
new Solution()
73+
.canPartitionGrid(
74+
new int[][] {{2, 40, 2}, {4, 2, 3}, {5, 1, 6}, {7, 8, 9}}),
75+
equalTo(true));
76+
}
6877
}

0 commit comments

Comments
 (0)