1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-05-18 12:02:53 +02:00

Add "is-palindrome" challenge

This commit is contained in:
Divlo
2020-07-05 19:01:27 +02:00
parent 957e13bc5e
commit 7c9c59e5b1
5 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,4 @@
# typescript-palindrome - is-palindrome
Programming language : TypeScript
Created by [@Divlo](https://github.com/Divlo) at 5 July 2020.

View File

@ -0,0 +1,6 @@
function solution (string: string) {
const formattedString = string.replace(/ /g,'').toLowerCase()
return formattedString === formattedString.split("").reverse().join('')
}
export default solution