Skip to content

Commit

Permalink
Merge pull request adnanaziz#135 from deveshks/problem-11.9-extra-lin…
Browse files Browse the repository at this point in the history
…e-fix

Removed extra line for Problem 11.9 adnanaziz#133
  • Loading branch information
metopa authored Dec 4, 2019
2 parents 37a0786 + ad49f02 commit 7ebd807
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion epi_judge_python_solutions/absent_value_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ def find_missing_element(stream: Iterator[int]) -> int:
# Finds all IP addresses in the stream whose first 16 bits are equal to
# candidate_bucket.
candidates = [0] * bucket_capacity
stream = stream_copy
for x in stream_copy:
upper_part_x = x >> 16
if candidate_bucket == upper_part_x:
Expand Down

0 comments on commit 7ebd807

Please sign in to comment.