removed Interestellar

This commit is contained in:
Isidro Arias 2023-04-08 17:20:08 +02:00
parent 00cc60e23a
commit 35fa5f5c4b

View File

@ -29,9 +29,9 @@ because both hash functions return the same value
'01100100'
Not added elements should return False ...
>>> not_present_films = ("The Godfather", "Interstellar", "Parasite", "Pulp Fiction")
>>> not_present_films = ("The Godfather", "Parasite", "Pulp Fiction")
>>> {film: bloom.format_hash(film) for film in not_present_films}
{'The Godfather': '00000101', 'Interstellar': '00000011', 'Parasite': '00010010', 'Pulp Fiction': '10000100'}
{'The Godfather': '00000101', 'Parasite': '00010010', 'Pulp Fiction': '10000100'}
>>> any(film in bloom for film in not_present_films)
False