You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#check [Palindrome_checker.md](https://github.com/codewithmide/JavaScript-Algorithms-and-Data-Structures-Projects/blob/master/Palindrome_Checker/Palindrome_checker.md) for more test cases
2
+
3
+
`palindrome("eye")` should return a `boolean`.
4
+
`palindrome("eye")` should return `true`.
5
+
`palindrome("_eye")` should return `true`.
6
+
`palindrome("race car")` should return `true`.
7
+
`palindrome("not a palindrome")` should return `false`.
8
+
`palindrome("A man, a plan, a canal. Panama")` should return `true`.
9
+
`palindrome("never odd or even")` should return `true`.
10
+
`palindrome("nope")` should return `false`.
11
+
`palindrome("almostomla")` should return `false`.
12
+
`palindrome("My age is 0, 0 si ega ym.")` should return `true`.
13
+
`palindrome("1 eye for of 1 eye.")` should return `false`.
14
+
`palindrome("0_0 (: /-\ :) 0-0")` should return `true`.
15
+
`palindrome("five|\_/|four")` should return `false`.
0 commit comments