mai 5 2022
全网最麻烦
class Solution {
public int lengthOfLongestSubstring(String s) {
int max = 0;
for(int i = 0; i < s.length(); i++){
// 注意哈希集合放的位置
HashSet<Character> set = new HashSet<>();
for(int j = i; j<s.length(); j++){
if(!set.contains(s.charAt(j))){
set.add(s.charAt(j));
}else{
break;
}
max = set.size()>max? set.size():max;
}
}
return max;
}
}