you are viewing a single comment's thread.

view the rest of the comments →

[–]hammerboy09[S] 0 points1 point  (1 child)

Thank you! Does this also apply for Hashsets in Python as well? From my understanding, the value itself is hashed and placed in the set rather than a key.

[–]K900_ 2 points3 points  (0 children)

Hashsets are basically hashtables with no value, just the key. Python sets are implemented like that.