Skip to content

Commit 35fa5f5

Browse files
committed
removed Interestellar
1 parent 00cc60e commit 35fa5f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: data_structures/hashing/bloom_filter.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
'01100100'
3030
3131
Not added elements should return False ...
32-
>>> not_present_films = ("The Godfather", "Interstellar", "Parasite", "Pulp Fiction")
32+
>>> not_present_films = ("The Godfather", "Parasite", "Pulp Fiction")
3333
>>> {film: bloom.format_hash(film) for film in not_present_films}
34-
{'The Godfather': '00000101', 'Interstellar': '00000011', 'Parasite': '00010010', 'Pulp Fiction': '10000100'}
34+
{'The Godfather': '00000101', 'Parasite': '00010010', 'Pulp Fiction': '10000100'}
3535
>>> any(film in bloom for film in not_present_films)
3636
False
3737

0 commit comments

Comments
 (0)