How do you mitigate collision in your own implementation of HashTable?
Anónimo
In case of collision I may need to add a list for each key in the HashTable. The list will have key and value for each collision and when user queries it will check in the list and return.