mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
20 lines
341 B
Java
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;
|
|
}
|
|
}
|