+ 6
đ đChallenge: Make a palindrome checkerđđ
A palindrome is a word, phrase, number, or other sequence of characters which reads the same backward as forward. your program needs to detect a sentence/word/numbers and return a positive or nagative value Example: "lol" is palindrome, so the result will be true 677 is not palindrome, so the result be false here is my try: https://code.sololearn.com/cW8CRdXMDhVL/?ref=app
17 Answers
+ 4
https://code.sololearn.com/cm8HT0Zzlhzj/?ref=app
+ 4
my trails in ruby.....
https://code.sololearn.com/cELbT4BWtt91/?ref=app
+ 3
https://code.sololearn.com/cR4DVjNP4rXd/?ref=app
https://code.sololearn.com/cgtlGQC2E04W/?ref=app
+ 3
Solved in Ruby:
https://code.sololearn.com/cRvcFsKj3TOK/#rb
+ 3
Updated version. Works for sentences and dates now.
https://code.sololearn.com/c50l3gZTFlN1/?ref=app
+ 3
First code is used to check a word is palindrome or not.
And Second code is used to check a number is palindrome or not.
https://code.sololearn.com/Wx09Bus6pkF2/?ref=app
https://code.sololearn.com/WRNe68xTHQpk/?ref=app
+ 2
here you go, recycled from another challenge đ
https://code.sololearn.com/cJNqTkTOmt0H/?ref=app
+ 2
Seems like a lot of the replies don't work with sentences as the challenge requested. Test your code against this palindrome:
A man, a plan, a canal: Panama.
+ 2
Here are My codes in python for string and number
https://code.sololearn.com/cHv8VYXuycLr/?ref=app
https://code.sololearn.com/cUI3o67eJjIW/?ref=app
+ 1
bit magic for the win
https://code.sololearn.com/czsjN7qK9nXp/#cpp
+ 1
https://code.sololearn.com/cC6QMgAzL5a2/?ref=app
+ 1
my try in python, hope you enjoy
https://code.sololearn.com/cFx7nO82o446/#py
+ 1
Tried to write it so that it will work properly with sentences and phrases as requested.
Suggestions welcome!
https://code.sololearn.com/cKAtFn6mJMfU/#cs
0
Here are my new tries, now using Python:
https://code.sololearn.com/ckzKZUhvplvr/?ref=app
https://code.sololearn.com/cdb28fBq2f90/?ref=app