
We need to do these 3 things:
- Separate the
0s and non-0s. - Find out where the non-
0s need to be index-wise - Keeping track of the number of
0s

We have a potential brute force solution! This could be our pseudocode.
xxxxxxxxxxtemp = []zero_count = 0iterate through array: if nonzero, push to new temp if zero, increment countfor zero_count times: push to tempreturn tempOUTPUT
:001 > Cmd/Ctrl-Enter to run, Cmd/Ctrl-/ to comment


