Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 978551a

Browse files
committedMay 13, 2025·
Added tests
1 parent 7f4d40c commit 978551a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
 

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,11 @@ void canPartitionGrid8() {
5858
void canPartitionGrid9() {
5959
assertThat(new Solution().canPartitionGrid(new int[][] {{253, 10, 10}}), equalTo(true));
6060
}
61+
62+
@Test
63+
void canPartitionGrid10() {
64+
assertThat(
65+
new Solution().canPartitionGrid(new int[][] {{4, 4, 4}, {2, 2, 1}, {1, 1, 1}}),
66+
equalTo(true));
67+
}
6168
}

0 commit comments

Comments
 (0)
Please sign in to comment.