From 88721d8e3d2d3124c918bbef6bf5f1007549f185 Mon Sep 17 00:00:00 2001 From: Sekiro <155538724+Sekiro4321@users.noreply.github.com> Date: Fri, 13 Feb 2026 23:08:36 +0530 Subject: [PATCH] Revert "Add palindrome checker" --- scripts/more_utils.py | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 scripts/more_utils.py diff --git a/scripts/more_utils.py b/scripts/more_utils.py deleted file mode 100644 index 32b2f5ee..00000000 --- a/scripts/more_utils.py +++ /dev/null @@ -1,4 +0,0 @@ -def is_palindrome(text): - """Check if a string is a palindrome.""" - cleaned = text.lower().replace(" ", "") - return cleaned == cleaned[::-1] \ No newline at end of file