-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathResult.java
More file actions
40 lines (35 loc) · 1.31 KB
/
Result.java
File metadata and controls
40 lines (35 loc) · 1.31 KB
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
package hackrank.algorithm.string.palindrome;
/**
* @see <a href="https://www.hackerrank.com/challenges/palindrome-index">Palindrome Index</a>
*/
public class Result {
/**
* @param s string of lowercase letters in ASCII range a-z
* @return index of the character to remove from {@code s} to make a palindrome. -1 if it is not possible
*/
public static int palindromeIndex(String s) {
for (int left = 0, right = s.length() - 1; left < right; left++, right--) {
char leftChar = s.charAt(left);
char rightChar = s.charAt(right);
if (leftChar == rightChar) {
continue;
}
if (isPalindrome(s, left, right)) { // try without character at "right" index
return right;
} else if (isPalindrome(s, left + 1, right + 1)) { // try without character at "left" index
return left;
} else {
return -1;
}
}
return -1;
}
private static boolean isPalindrome(String value, int startIndex, int endIndex) {
for (int left = startIndex, right = endIndex - 1; left < right; left++, right--) {
if (value.charAt(left) != value.charAt(right)) {
return false;
}
}
return true;
}
}