leetCode 第三題

題目詳情 思路分析 去重的問題首先應該想到的是set數據結構。其的思路就是去利用set來進行記錄當前的集合中是否有重複的元素。web class Solution { public int lengthOfLongestSubstring(String s) { Set<Character> s1 = new HashSet<Character>(); int len
相關文章
相關標籤/搜索