Skip to content Skip to sidebar Skip to footer
Showing posts with the label Hashtable

How Does Python Implement Dictionaries?

I was wondering how python dictionaries work under the hood, particularly the dynamic aspect? When … Read more How Does Python Implement Dictionaries?

Why Are Tuples Constructed From Differently Initialized Sets Equal?

I expected the following two tuples >>> x = tuple(set([1, 'a', 'b', 'c… Read more Why Are Tuples Constructed From Differently Initialized Sets Equal?