Skip to content

Commit cf14f87

Browse files
Update hash_map.py
1 parent 79dbf28 commit cf14f87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/hashing/hash_map.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ def __delitem__(self, key: KEY) -> None:
246246
## Resize down
247247
>>> del hm[75]
248248
>>> len(hm._buckets)
249-
100
249+
200
250250
>>> del hm[74]
251251
>>> len(hm._buckets)
252252
100

0 commit comments

Comments
 (0)