We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d9e901 commit 4a8c222Copy full SHA for 4a8c222
src/test/java/g3501_3600/s3536_maximum_product_of_two_digits/SolutionTest.java
@@ -20,4 +20,14 @@ void maxProduct2() {
20
void maxProduct3() {
21
assertThat(new Solution().maxProduct(124), equalTo(8));
22
}
23
+
24
+ @Test
25
+ void maxProduct4() {
26
+ assertThat(new Solution().maxProduct(453), equalTo(20));
27
+ }
28
29
30
+ void maxProduct5() {
31
+ assertThat(new Solution().maxProduct(437), equalTo(28));
32
33
0 commit comments