How does a hash table handle collisions, and what about the time?
What is the difference between an array and a linked list
i did one interview, very nice people
Interview questions [1]
Question 1
I explained that when two keys map to the same index, the hash table can handle it using chaining, where each bucket stores a list of values, or open addressing.