Last active
August 17, 2020 12:18
-
-
Save pketh/dda5042767871b0a311729ccabeda01d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
moveZeros([1, 2, 0, 1, 0, 0, 3, 6]) | |
const moveZeroes = (numbers) => { | |
let zeroes = [] | |
numbers = numbers.filter(number => { | |
if (number === 0) { | |
zeroes.push(number) | |
} else { | |
return true | |
} | |
}) | |
zeroes.forEach(zero => numbers.push(zero)) | |
// numbers = [1, 2, 1, 3, 6, 0, 0, 0] | |
return numbers | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://buttondown.email/cassidoo/archive/if-you-spend-too-much-time-thinking-about-a-thing/