Move Zeros
Two pointers
Problem
Given an array nums
, write a function to move all 0
's to the end of it while maintaining the relative order of the non-zero elements.
For example:
Solution
Last updated
Was this helpful?
Two pointers
Given an array nums
, write a function to move all 0
's to the end of it while maintaining the relative order of the non-zero elements.
For example:
Last updated
Was this helpful?