Skip to content

Commit 1ff9936

Browse files
committed
fix linelint
1 parent 3113880 commit 1ff9936

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

longest-substring-without-repeating-characters/i-mprovising.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,3 @@ def slidingWindow(self, s):
3535
end += 1
3636
max_len = max(end - start, max_len)
3737
return max_len
38-

number-of-islands/i-mprovising.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ def dfs(x, y):
2929
dfs(i, j)
3030
islands += 1
3131

32-
return islands
32+
return islands

0 commit comments

Comments
 (0)