We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a7942a commit 619442aCopy full SHA for 619442a
src/test/kotlin/g3501_3600/s3536_maximum_product_of_two_digits/SolutionTest.kt
@@ -19,4 +19,19 @@ internal class SolutionTest {
19
fun maxProduct3() {
20
assertThat<Int>(Solution().maxProduct(124), equalTo<Int>(8))
21
}
22
+
23
+ @Test
24
+ fun maxProduct4() {
25
+ assertThat<Int>(Solution().maxProduct(453), equalTo<Int>(20))
26
+ }
27
28
29
+ fun maxProduct5() {
30
+ assertThat<Int>(Solution().maxProduct(437), equalTo<Int>(28))
31
32
33
34
+ fun maxProduct6() {
35
+ assertThat<Int>(Solution().maxProduct(724), equalTo<Int>(28))
36
37
0 commit comments