EliteProgrammersClub / EPCDailyChallenge

Daily challenge on algorithm, using different languages. From different problems to be solved.
MIT License
7 stars 20 forks source link

Palindromes #14

Open xasterKies opened 2 years ago

xasterKies commented 2 years ago

Directions

Given a string, return true if the string is a palindrome or false if it is not. Palindromes are strings that form the same word if it is reversed. Do include spaces and punctuation in determining if the string is a palindrome. Make use of Functions and Methods where necessory

You can code this with any language of your choice!

Examples

palindrome("abba") === true palindrom("abcdefg") === false

xxxSkypper commented 2 years ago

please assign me

xasterKies commented 2 years ago

Done @xxxSkypper

RandyKdev commented 2 years ago

@xaster-Kies I would like to try this.