Skip to content

Commit 0e38461

Browse files
committed
added all test cases
1 parent 04e9143 commit 0e38461

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Palindrome_Checker/README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#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

Comments
 (0)