December 3, 2025 128. Longest Consecutive Sequence Master the O(n) solution for finding the longest consecutive sequence in an unsorted array using Hash Sets. algorithm data-structures hash-set array leetcode Read more
December 5, 2025 167. Two Sum II - Input Array Is Sorted Master the efficient Two Pointer technique to solve the sorted Two Sum problem in linear time and constant space. two-pointers arrays binary-search leetcode algorithms Read more
December 1, 2025 238. Product Of Array Except Self Master the O(n) prefix-suffix pattern to solve LeetCode 238 without division. algorithm arrays prefix-sum leetcode optimization Read more