llipio / algorithms

algorithm problem practice
12 stars 24 forks source link

Palindrome #13

Open songz opened 7 years ago

songz commented 7 years ago

Return true if input string is a palindrome

i: "" o: true

i: 'racecar' o: true

i: 'trerk' o: false

songz commented 7 years ago

First solution! https://github.com/llipio/algorithms/pull/23