Skip to content

Commit 4a8c222

Browse files
committed
Added test
1 parent 6d9e901 commit 4a8c222

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/test/java/g3501_3600/s3536_maximum_product_of_two_digits/SolutionTest.java

+10
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,14 @@ void maxProduct2() {
2020
void maxProduct3() {
2121
assertThat(new Solution().maxProduct(124), equalTo(8));
2222
}
23+
24+
@Test
25+
void maxProduct4() {
26+
assertThat(new Solution().maxProduct(453), equalTo(20));
27+
}
28+
29+
@Test
30+
void maxProduct5() {
31+
assertThat(new Solution().maxProduct(437), equalTo(28));
32+
}
2333
}

0 commit comments

Comments
 (0)