← AlgoMindset 75

🧠 Before you code — what pattern fits?

Given an integer array nums, move all 0's to the end of it while maintaining the relative order of the non-zero elements. Do this in place, then return the array.

[0,1,0,3,12] → [1,3,12,0,0]

🎬 Video explanation · NeetCode

Your solution runs against 3 unit tests, including edge and large-value cases.

Loading...

Test console · 3 unit tests

Submit your code to run it against all 3 unit tests. Results appear here.

JavaScript, TypeScript & Python run sandboxed in your browser; other languages run on the execution server. Your code is saved locally as you type.