Skip to content

Commit a69599f

Browse files
committed
Time: 23 ms (32.75%), Space: 17.8 MB (34.11%) - LeetHub
1 parent 73f7346 commit a69599f

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
class Solution:
22
def lengthOfLongestSubstring(self, s: str) -> int:
3-
left = 0
4-
bag = set()
3+
index_map = {}
4+
l = 0
55
answer = 0
6-
for right, ch in enumerate(s):
7-
if ch in bag:
8-
while left < right:
9-
ch2 = s[left]
10-
bag.remove(s[left])
11-
left += 1
12-
if ch2 == ch:
13-
break
14-
bag.add(ch)
15-
answer = max(answer, len(bag))
6+
7+
def repeating_chars():
8+
return ch in index_map and index_map[ch] >= l
9+
10+
for r, ch in enumerate(s):
11+
if repeating_chars():
12+
idx = index_map[ch]
13+
l = idx + 1
14+
index_map[ch] = r
15+
answer = max(answer, r - l + 1)
1616
return answer

0 commit comments

Comments
 (0)