Skip to content

Commit c22092d

Browse files
committed
Added test
1 parent 96afc16 commit c22092d

File tree

1 file changed

+5
-0
lines changed
  • src/test/java/g3401_3500/s3448_count_substrings_divisible_by_last_digit

1 file changed

+5
-0
lines changed

src/test/java/g3401_3500/s3448_count_substrings_divisible_by_last_digit/SolutionTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,9 @@ void countSubstrings4() {
3030
void countSubstrings5() {
3131
assertThat(new Solution().countSubstrings("28"), equalTo(2L));
3232
}
33+
34+
@Test
35+
void countSubstrings6() {
36+
assertThat(new Solution().countSubstrings("04"), equalTo(2L));
37+
}
3338
}

0 commit comments

Comments
 (0)