forked from TheAlgorithms/JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Palindrome.js
62 lines (54 loc) · 1.55 KB
/
Palindrome.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/**
* A palindrome is any string that can be reversed and still be the same.
* An example of one is 'radar', since it is spelled the same even after
* being reversed. One method to check if a
*
* Here's how this works recursively:
*
* Palindrome('radar')
* true && Palindrome('ada')
* true && true && Palindrome('d')
* true && true && true && true
*
* @flow
* @complexity: O(n)
*/
const PalindromeRecursive = (string) => {
// Base case
if (string.length < 2) return true
// Check outermost keys
if (string[0] !== string[string.length - 1]) {
return false
}
return PalindromeRecursive(string.slice(1, string.length - 1))
}
const PalindromeIterative = (string) => {
const _string = string
.toLowerCase()
.replace(/ /g, '')
.replace(/,/g, '')
.replace(/'.'/g, '')
.replace(/:/g, '')
.split('')
// A word of only 1 character is already a palindrome, so we skip to check it
while (_string.length > 1) {
if (_string.shift() !== _string.pop()) {
return false
}
}
return true
}
/**
*
* Checks if a string is a palindrome.
* @author dev-madhurendra
* @param {string} str - The string to check.
* @returns {boolean} True if the string is a palindrome, false otherwise.
*
* @example
* const isPalindrome = checkPalindrome('racecar'); // Returns true
* const isNotPalindrome = checkPalindrome('hello'); // Returns false
*/
const checkPalindrome = (str) =>
str.replace(/\s/g, '') === str.replace(/\s/g, '').split('').reverse().join('')
export { PalindromeIterative, PalindromeRecursive, checkPalindrome }