What is the time complexity of deleting from a hash table?
The time complexity of deleting from a hash table is typically O(1) on average. However, in the worst case scenario, the time complexity can be O(n), where n is the number of elements in the hash table.