top of page
Search
Contains Duplicate – A Warm Up
In today’s session, I’m tackling the Contains Duplicate problem, a common warm‑up that helps demonstrate your grasp of array manipulation...
Apr 163 min read
Move Zeroes – A Warm‑Up
Let’s walk through one of the classic warm-up problems you might face in a coding interview or on the job: moving all the zeroes in an...
Apr 153 min read
Reverse an Array In Place
In today’s practice question, we talk through the reverse an array in place question - no extra arrays allowed. Problem Statement Given...
Apr 154 min read
Rotate an Array by k Steps
Rotating an array in place is a classic warm‑up that tests your ability to manipulate arrays, handle wrap‑around indexing, and optimize...
Apr 153 min read
Find the First Non-Repeating Character
Alright, you're in a technical interview and you've just been given the question: “Find the index of the first non-repeating character in...
Apr 104 min read
The Two Sum Problem
The Two Sum Problem  is one of the first stops on our journey. It’s simple enough to focus on thought process, yet rich enough to...
Apr 84 min read
Generate All Valid Parentheses
Problem Statement Given an integer n, write a function to generate all possible combinations of n pairs of valid parentheses. Example 1...
Mar 184 min read
bottom of page