Skip to content

Commit 54f306d

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data_structures/heap/median_in_a_stream.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ def median_in_a_stream(numbers: List[int]) -> List[int]:
6464
Find the median after each insertion in a stream of integers.
6565
6666
Uses two heaps and follows the classic running median logic.
67-
67+
6868
Reference:
6969
https://en.wikipedia.org/wiki/Median#Running_median
70-
70+
7171
Args:
7272
numbers: List of integers
7373

0 commit comments

Comments
 (0)