1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-16 16:36:56 +02:00
LeetCode/java/minimum-length-of-string-after-deleting-similar-ends.java
2024-03-06 00:11:13 +01:00

20 lines
341 B
Java

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;
}
}