Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Hash Tables And Uses
00:00
5 left

Hash Tables And Uses

MediumPython

Problem

Explain what a hash table is and what it is used for.

Implement the concept with a function using separate chaining. run_hash_table(operations) receives a list of operations and returns one result per operation: set returns True, get returns its value or None, contains returns a boolean, and delete returns whether a key existed.

Constraints

  • 0 <= operations.length <= 10^4
  • Each operation is set, get, contains, or delete
  • Keys are non-empty strings of at most 100 characters
  • Set values are integers
  • Keys may collide under the hash function
  • Operations are valid according to their operation name and required arguments

Function Signature

def run_hash_table(operations):
Interviewer

Your question is Hash Tables And Uses. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.