Fundamentals
/
Collision Handling
⏸
00:00
↻
← Prev
Next →
▶
Question
Implement a hash table using separate chaining with bucketCount buckets supporting set(key, value) and get(key) on string keys. Return null on missing keys.
▶
My Code
▶
Reference Solution