1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/java/minimum-length-of-string-after-deleting-similar-ends.java

21 lines
341 B
Java
Raw Normal View History

class Solution {
public int minimumLength(String s) {
int i = 0;
int j = s.length() - 1;
while (i < j && s.charAt(i) == s.charAt(j)) {
var c = s.charAt(i);
while (i <= j && s.charAt(i) == c) {
++i;
}
while (j > i && s.charAt(j) == c) {
--j;
}
}
return j - i + 1;
}
}