Skip to content

Commit 880bf05

Browse files
committed
fix lint
1 parent 6b21279 commit 880bf05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

longest-substring-without-repeating-characters/hi-rachel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@ def lengthOfLongestSubstring(s: str) -> int:
8383
# 현재 윈도우 길이와 최대 길이 비교 후 업데이트
8484
max_length = max(max_length, right - left + 1)
8585

86-
return max_length
86+
return max_length

0 commit comments

Comments
 (0)