Algorithm Study

[leetcode] Array - Duplicate ZerosSolution

hyun-1200 2022. 9. 11. 20:21

 

https://leetcode.com/explore/learn/card/fun-with-arrays/525/inserting-items-into-an-array/3245/

 

Explore - LeetCode

LeetCode Explore is the best place for everyone to start practicing and learning on LeetCode. No matter if you are a beginner or a master, there are always new topics waiting for you to explore.

leetcode.com

 

배열의 값이 0 이면, 그다음 인덱스도 0으로 넣고 배열을 오른쪽 밀어넣는 문제.

 

for문으로 풀다보니, 검사한 idx인지 확인이 필요해서 check 변수를 사용했다.

while문을 사용했더라면, check변수를 사용하지 않았어도 될 것 같다.

 

굉장히 쉬워보이는데 의외로 시간이 좀 걸렸다. (반성)