Mar 30, 2026 · 4 min read
Two Sum with Hash Map: My Reliable O(n) Pattern
A practical walkthrough of how I use a hash map for Two Sum, including edge-case checks and why one-pass lookup is enough.
Technical Blog
I document solution strategies, implementation patterns, and lessons from coding problems so I can build a reliable interview and engineering knowledge base.
Mar 30, 2026 · 4 min read
A practical walkthrough of how I use a hash map for Two Sum, including edge-case checks and why one-pass lookup is enough.
Mar 30, 2026 · 3 min read
A concise walkthrough for Reduction Operations to Make the Array Elements Equal with clear approach, complexity, and multi-language implementation templates.
Mar 30, 2026 · 3 min read
A concise walkthrough for Longest Palindromic Subsequence with clear approach, complexity, and multi-language implementation templates.
Mar 28, 2026 · 5 min read
How I approach bracket-matching problems with a stack, and the exact checks that avoid false positives.