This commit is contained in:
Meutel 2019-06-16 16:09:12 +02:00
parent 4a4f9a6430
commit e74dc83cb4
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ public class Utils {
public static void testPalindrome(Function<char[], Boolean> func) {
testPalindrome(func, "palindrome", false);
for (String pal : List.of("elle", "kayak", "serre", "essayasse")) {
for (String pal : List.of("elle", "kayak", "serres", "essayasse")) {
testPalindrome(func, pal, true);
}
}