Skip to content

Commit ecf074d

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent f871583 commit ecf074d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

other/sliding_window_maximum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ def sliding_window_maximum(numbers: List[int], window_size: int) -> List[int]:
5656
if current_index >= window_size - 1:
5757
result.append(numbers[index_deque[0]])
5858

59-
return result
59+
return result

0 commit comments

Comments
 (0)