Task Description
Move Zero
給定一組長度為 n 的正整數陣列 A。將元素值為0的放在 A 的尾端,並依相對順序保留非零元素。最後印出 A 的所有元素值。
Input Format
第一列輸入為 n,第二列輸入為 A 中的 n 個元素值。
Note: 0 < n ≤ 100、 -100 ≤ A[i] ≤ 100
Output Format
將元素值為0的放在尾端,並依相對順序保留非零元素。
元素之間空一格,最後一元素不空格
Sample Input
12 3
5 0 9
Sample Output
1 5 9 0
Sample Input
12 5
0 3 0 1 8
Sample Output
1 3 1 8 0 0