Skip to content

Commit c58dfac

Browse files
authored
Update 0003_Longest_Substring_Without_Repeating_Characters.py
1 parent b4d9fc3 commit c58dfac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/0003_Longest_Substring_Without_Repeating_Characters.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ def lengthOfLongestSubstring(self, s: str) -> int:
2020

2121
print(Solution().lengthOfLongestSubstring("abcabcbb")) # 3
2222
print(Solution().lengthOfLongestSubstring("bbbbb")) # 1
23-
print(Solution().lengthOfLongestSubstring("pwwkew")) # Example 3
23+
print(Solution().lengthOfLongestSubstring("pwwkew")) # 3

0 commit comments

Comments
 (0)