LeetCode_3 無重複字符的最長子串 longest-substring-without-repeating-characters

滑動窗口,簡單題code int lengthOfLongestSubstring(string s) { unordered_map<char, int> mymap; int pre = 0; int maxx = 0; for(int i = 0; i < s.size(); i++){ if(mymap.find(s[i]) == mymap
相關文章
相關標籤/搜索