Skip to content
QuizMaker logoQuizMaker
Activity
DSA Course: Interview Patterns and Problem Solving
Module 1: Arrays
Best Time to Buy and Sell Stock: Greedy Pattern
Maximum Subarray: Kadane Pattern
Move Zeroes: Two pointers Pattern
Contains Duplicate: Set Pattern
Valid Anagram: Frequency map Pattern
Longest Substring Without Repeating Characters: Sliding window Pattern
Valid Palindrome: Two pointers Pattern
Longest Palindromic Substring: Expand around center Pattern
Group Anagrams: Hash key Pattern
Binary Search: Classic search Pattern
Search Insert Position: Lower bound Pattern
First Bad Version: Predicate search Pattern
Search in Rotated Sorted Array: Rotated search Pattern
Find Minimum in Rotated Sorted Array: Rotated minimum Pattern
Valid Parentheses: Stack matching Pattern
Min Stack: Auxiliary stack Pattern
Daily Temperatures: Monotonic stack Pattern
Next Greater Element I: Monotonic stack Pattern
Evaluate Reverse Polish Notation: Stack evaluation Pattern
Reverse Linked List: Pointer reversal Pattern
Merge Two Sorted Lists: Dummy node Pattern
Linked List Cycle: Fast and slow pointers Pattern
Middle of the Linked List: Fast and slow pointers Pattern
Remove Nth Node From End: Two pointers Pattern
Binary Tree Traversals: DFS recursion Pattern
Maximum Depth of Binary Tree: Height recursion Pattern
Binary Tree Level Order Traversal: BFS queue Pattern
Validate Binary Search Tree: Range bounds Pattern
Lowest Common Ancestor: Recursive split Pattern
Connected Components: Adjacency DFS Pattern
Number of Islands: Grid DFS Pattern
Flood Fill: Boundary DFS Pattern
Clone Graph: Hash Map DFS Pattern
Course Schedule: Topological Sort Pattern
Union Find Components: Disjoint Set Pattern
Shortest Path in Unweighted Graph: BFS Distance Pattern
Climbing Stairs: Fibonacci DP Pattern
House Robber: Pick or Skip DP Pattern
Coin Change: Minimum Coins DP Pattern
Longest Increasing Subsequence: Binary Search DP Pattern
Longest Common Subsequence: 2D DP Pattern
0/1 Knapsack: Capacity DP Pattern
Longest Consecutive Sequence: Hash Set Pattern
Subarray Sum Equals K: Prefix Sum Hashmap Pattern
First Unique Character: Frequency Map Pattern
Find Duplicates: Frequency Map Pattern
Ransom Note: Character Availability Pattern
Sort Colors: Dutch National Flag Pattern
Next Permutation: Pivot and Suffix Reversal Pattern
Merge Intervals: Sort and Sweep Pattern
Find First and Last Position: Boundary Binary Search Pattern
Search a 2D Matrix: Flattened Binary Search Pattern
Subsets: Pick or Skip Recursion Pattern
Generate Parentheses: Valid State Backtracking Pattern
Combination Sum: Reuse Choice Backtracking Pattern
N-Queens: Constraint Backtracking Pattern
Word Search: Grid Backtracking Pattern
Kth Largest Element: Size-K Min-Heap Pattern
Top K Frequent Elements: Frequency Heap Pattern
Merge K Sorted Lists: Min-Heap Multiway Merge Pattern
Median Finder: Two Heaps Pattern
Task Scheduler: Greedy Max-Heap Pattern
Jump Game: Farthest Reach Greedy Pattern
Gas Station: Greedy Reset Pattern
Non-overlapping Intervals: Earliest End Greedy Pattern
Minimum Arrows to Burst Balloons: Interval End Greedy Pattern
Partition Labels: Last Occurrence Greedy Pattern
Single Number: XOR Cancellation Pattern
Power of Two: n and n-1 Pattern
Number of 1 Bits: Brian Kernighan Pattern
Single Number III: Rightmost Set Bit Pattern
XOR From 1 to N: Modulo Cycle Pattern
Prime Check: Square Root Trial Division Pattern
Sieve of Eratosthenes: Prime Marking Pattern
GCD: Euclidean Remainder Pattern
Binary Exponentiation: Fast Power Pattern
Modular Inverse: Extended Euclid Pattern
Implement Trie: Prefix Tree Pattern
Longest Common Prefix: Single Branch Trie Pattern
LRU Cache: Hash Map Plus Recency List Pattern
Segment Tree: Range Sum Query Pattern
Fenwick Tree: Binary Indexed Prefix Sum Pattern
CONTENTS

Move Zeroes: Two pointers Pattern

Move non-zero values forward with a write pointer, then fill the remaining cells with zeroes.

DSA Course: Interview Patterns and Problem Solving
Module 1: Arrays
dsa
data structures and algorithms
+4
May 28, 2026
31
A

Learning Outcome

After this lesson, you should be able to preserve the order of non-zero values while moving zeroes to the end in-place.

Problem Statement

Given an integer array nums, move all zeroes to the end while keeping the relative order of non-zero elements. Modify the array in-place.

InputOutputWhy
[0, 1, 0, 3, 12][1, 3, 12, 0, 0]Non-zero values keep their original order.

Brute Force Approach

Create a temporary list of non-zero values, copy them back into the array, and fill the rest with zeroes.

This is clear, but it uses O(n) extra space. The interview usually expects in-place modification.

Optimized Approach

Use write as the position where the next non-zero value should go. Scan the array once. Whenever a non-zero value appears, write it at write and move write forward.

After all non-zero values are compacted at the front, fill the remaining positions with zeroes.

Exact Pseudocode

write = 0
for read from 0 to length(nums) - 1:
  if nums[read] != 0:
    nums[write] = nums[read]
    write = write + 1
while write < length(nums):
  nums[write] = 0
  write = write + 1

Reference Code

class Solution:
    def moveZeroes(self, nums):
        write = 0

        for value in nums:
            if value != 0:
                nums[write] = value
                write += 1

        while write < len(nums):
            nums[write] = 0
            write += 1

Sample Dry Run

read valuewrite beforearray after actionwrite after
00[0, 1, 0, 3, 12]0
10[1, 1, 0, 3, 12]1
01[1, 1, 0, 3, 12]1
31[1, 3, 0, 3, 12]2
122[1, 3, 12, 3, 12]3
fill zeroes3[1, 3, 12, 0, 0]5

Complexity

MeasureValueReason
TimeO(n)The array is scanned once, then the remaining tail is filled.
SpaceO(1)The update is in-place.

Edge Cases

  • All zeroes.
  • No zeroes.
  • Zeroes already at the end.

Interview Checklist

  • Preserve order of non-zero values.
  • Do not allocate another array unless allowed.
  • Remember to fill the tail with zeroes.

FAQs

Why not swap every zero with a later non-zero?

Swapping can still work, but the write-pointer version is easier to reason about and preserves order cleanly.

Why does the first pass overwrite values?

Only the compacted prefix matters after the pass. The remaining tail is overwritten with zeroes.

Is this a two-pointer problem?

Yes. The read pointer scans values and the write pointer marks the next non-zero position.

Share this article

Share on TwitterShare on LinkedInShare on FacebookShare on WhatsAppShare on Email

Test your knowledge

Take a quick quiz based on this chapter.

easyDSA Course
Move Zeroes - Two pointers Pattern Practice Quiz
5 questions8 min

0 comments

Please login to comment.
No comments yet.
Lesson 3 of 4 in Module 1: Arrays
Previous in Module 1: Arrays
Maximum Subarray: Kadane Pattern
Next in Module 1: Arrays
Contains Duplicate: Set Pattern
Back to DSA Course: Interview Patterns and Problem Solving
Back to moduleCategories