From e74dc83cb4af50741ebad0c4aa66a5c51bfad383 Mon Sep 17 00:00:00 2001 From: Meutel Date: Sun, 16 Jun 2019 16:09:12 +0200 Subject: [PATCH] fix --- utils/Utils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/Utils.java b/utils/Utils.java index ceda079..cc35def 100644 --- a/utils/Utils.java +++ b/utils/Utils.java @@ -117,7 +117,7 @@ public class Utils { public static void testPalindrome(Function 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); } }