Skip to content

Commit 4e22d71

Browse files
committed
fix: Add end line break
1 parent 6c88f0e commit 4e22d71

File tree

1 file changed

+2
-1
lines changed
  • longest-substring-without-repeating-characters

1 file changed

+2
-1
lines changed

longest-substring-without-repeating-characters/naringst.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ def lengthOfLongestSubstring(self, s: str) -> int:
1919
maxLength = max(maxLength, len(stringArr))
2020

2121

22-
return maxLength
22+
return maxLength
23+

0 commit comments

Comments
 (0)