Skip to content

Commit 02e9c47

Browse files
committed
Added test
1 parent f3dc5ef commit 02e9c47

File tree

1 file changed

+8
-0
lines changed
  • src/test/kotlin/g1701_1800/s1751_maximum_number_of_events_that_can_be_attended_ii

1 file changed

+8
-0
lines changed

src/test/kotlin/g1701_1800/s1751_maximum_number_of_events_that_can_be_attended_ii/SolutionTest.kt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,12 @@ internal class SolutionTest {
3535
equalTo(9)
3636
)
3737
}
38+
39+
@Test
40+
fun maxValue4() {
41+
assertThat(
42+
Solution().maxValue(arrayOf(intArrayOf(1, 2, 4), intArrayOf(3, 4, 3), intArrayOf(2, 3, 10)), 1),
43+
equalTo(10)
44+
)
45+
}
3846
}

0 commit comments

Comments
 (0)