[Array] Move Zeroes

2021. 1. 8. 21:41프로그래밍-코딩테스트/LeetCode

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.

 

 

그냥 0이 있으면 오른쪽으로 밀어내라는 문제

 

Loop를 돌리면서 0이 있으면 splice 메소드를 이용해 떼어내고, push 해주다가 배열 리턴하면 끝