Skip to content

Commit 3194d00

Browse files
committed
Improved task 3449
1 parent a385d84 commit 3194d00

File tree

1 file changed

+5
-0
lines changed
  • src/test/kotlin/g3401_3500/s3449_maximize_the_minimum_game_score

1 file changed

+5
-0
lines changed

src/test/kotlin/g3401_3500/s3449_maximize_the_minimum_game_score/SolutionTest.kt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,9 @@ internal class SolutionTest {
1414
fun maxScore2() {
1515
assertThat<Long>(Solution().maxScore(intArrayOf(1, 2, 3), 5), equalTo<Long>(2L))
1616
}
17+
18+
@Test
19+
fun maxScore3() {
20+
assertThat<Long>(Solution().maxScore(intArrayOf(1, 2, 3), 2), equalTo<Long>(0L))
21+
}
1722
}

0 commit comments

Comments
 (0)