-
Notifications
You must be signed in to change notification settings - Fork 0
/
longest_sub.py
32 lines (27 loc) · 911 Bytes
/
longest_sub.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
"""
https://leetcode.com/problems/longest-substring-without-repeating-characters/
Input: s = "abcabcbb"
Output: 3
Explanation: The answer is "abc", with the length of 3.
Input: s = "bbbbb"
Output: 1
Explanation: The answer is "b", with the length of 1
Input: s = "pwwkew"
Output: 3
Explanation: The answer is "wke", with the length of 3.
Notice that the answer must be a substring, "pwke" is a subsequence and not a substring.
"""
def longest_sub(s: str) -> int:
longest_substring = ""
substring = ""
for ch in s:
if ch not in substring and ch not in longest_substring:
substring += ch
else:
if len(substring) > len(longest_substring):
longest_substring = substring
subtring = ""
return len(longest_substring)
print(longest_sub("abcabcbb"))
print(longest_sub("bbbbb"))
print(longest_sub("pwwkew"))