-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3_lengthOfLongestSubstring.py
67 lines (57 loc) · 1.42 KB
/
3_lengthOfLongestSubstring.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Longest Substring Without Repeating Characters
# Straightforward method
class Solution(object):
def lengthOfLongestSubstring_1(self, s):
"""
:type s: str
:rtype: int
"""
best_all = ''
for i in range(len(s)):
best = ''
for sub in s[i:]:
if sub not in best:
best += sub
else:
break
if len(best) > len(best_all):
best_all = best
return len(best_all)
# Rolling window 2n
def lengthOfLongestSubstring_2(self, s):
"""
:type s: str
:rtype: int
"""
n = len(s)
i = 0
j = 0
ans = 0
sets = set()
while i <= n - ans and j < n:
if s[j] not in sets:
sets.add(s[j])
j += 1
ans = max(j - i, ans)
else:
sets.remove(s[i])
i += 1
return ans
# Rolling window n
# Let i jump directly to the char after the duplicate char
def lengthOfLongestSubstring_3(self, s):
"""
:type s: str
:rtype: int
"""
n = len(s)
i = 0
ans = 0
sets = {}
for j in range(n):
if s[j] in sets:
i = max(sets[s[j]] + 1, i)
ans = max(ans, j - i + 1)
sets[s[j]] = j
return ans
##