forked from TonnyL/Windary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LongestPalindromicSubstring.js
79 lines (70 loc) · 1.79 KB
/
LongestPalindromicSubstring.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/**
* Given a string s, find the longest palindromic substring in s.
* You may assume that the maximum length of s is 1000.
*
* Example:
*
* Input: "babad"
*
* Output: "bab"
*
* Note: "aba" is also a valid answer.
* Example:
*
* Input: "cbbd"
*
* Output: "bb"
*
* Accepted.
*/
/**
* @param {string} s
* @return {string}
*/
let longestPalindrome = function (s) {
if (s == null || s.length <= 1) {
return s;
}
let maxLength = 0, startIndex = 0;
for (let index = 0; index < s.length; index++) {
let leftIndex = index;
let rightIndex = index;
while (leftIndex >= 0 && rightIndex < s.length && s.charAt(leftIndex) === s.charAt(rightIndex)) {
let current = rightIndex - leftIndex + 1;
if (current > maxLength) {
maxLength = current;
startIndex = leftIndex;
}
leftIndex--;
rightIndex++;
}
leftIndex = index;
rightIndex = index + 1;
while (leftIndex >= 0 && rightIndex < s.length && s.charAt(leftIndex) === s.charAt(rightIndex)) {
let current = rightIndex - leftIndex + 1;
if (current > maxLength) {
maxLength = current;
startIndex = leftIndex;
}
leftIndex--;
rightIndex++;
}
}
return s.substring(startIndex, maxLength + startIndex);
};
let s = longestPalindrome("babad");
if (s === "bab" || s === "aba") {
console.log("pass")
} else {
console.error("failed")
}
if (longestPalindrome("cbbd") === "bb") {
console.log("pass")
} else {
console.error("failed")
}
if (longestPalindrome("babaddtattarrattatddetartrateedredividerb") === "ddtattarrattatdd") {
console.log("pass")
} else {
console.error("failed")
}