Skip to content

Commit 3303957

Browse files
committed
Added test
1 parent 6f8292f commit 3303957

File tree

1 file changed

+5
-0
lines changed
  • src/test/kotlin/g3601_3700/s3615_longest_palindromic_path_in_graph

1 file changed

+5
-0
lines changed

src/test/kotlin/g3601_3700/s3615_longest_palindromic_path_in_graph/SolutionTest.kt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,9 @@ internal class SolutionTest {
3636
equalTo<Int>(3),
3737
)
3838
}
39+
40+
@Test
41+
fun maxLen4() {
42+
assertThat(Solution().maxLen(3, arrayOf<IntArray>(intArrayOf(2, 0), intArrayOf(2, 1)), "mll"), equalTo(2))
43+
}
3944
}

0 commit comments

Comments
 (0)