2024/11/4 灵茶题单 滑动窗口 相向双指针

This commit is contained in:
Cool 2024-11-04 15:55:15 +08:00
parent 47c4452ced
commit a8f8e8d875
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
package com.cool.ling_cha_mount.sliding_windows;
/**
* Created with IntelliJ IDEA.
*
* @Author: Cool
* @Date: 2024/11/04/15:54
* @Description: 1750. 删除字符串两端相同字符后的最短长度
*/
public class Num1750 {
public int minimumLength(String s) {
int left = 0;
int right = s.length() - 1;
while (left < right && s.charAt(left) == s.charAt(right)) {
char c=s.charAt(left);
left++;
right--;
while (left <= right && s.charAt(left) == c) {
left++;
}
while (left <= right && s.charAt(right) == c) {
right--;
}
}
return right - left + 1;
}
}