[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 해주다가 배열 리턴하면 끝
'프로그래밍-코딩테스트 > LeetCode' 카테고리의 다른 글
[Array] Height Checker (0) | 2021.01.08 |
---|---|
[Array] Sort Array By Parity (0) | 2021.01.08 |
[Array] Remove Duplicates from Sorted Array (0) | 2021.01.08 |
[Array] Replace Elements with Greatest Element on Right Side (0) | 2021.01.06 |
[Array] Valid Mountain Array (0) | 2021.01.06 |