Topics / Hashing
#️⃣
Hashing
Hash maps and sets — the O(1) lookup that turns hard problems into easy ones.
Why learn Hashing?
-
Converts many O(n²) brute forces into O(n) solutions.
-
Used in over half of medium-level interview problems.
-
Powers caches, dedup, deduplication, and database indexes.
What you can build with Hashing
Two-sum-style lookups Frequency counting Sub-array sum and prefix-hash patterns
Hashing tutorials
0 articles · page 1 of 1Hand-written tutorials, ordered as a recommended learning path.
Tutorials for Hashing are on the way.
In the meantime, explore other topics.