HusnaSari / Algorithms

MIT License
1 stars 1 forks source link

Sort Zeros #10

Open emrerenJs opened 2 years ago

emrerenJs commented 2 years ago

For example : Input : {1, 5, 3, 0, 2, 0 ,10, 0, 9, 8} Output : {0, 0, 0, 1, 5, 3, 2, 10, 9, 8 }

Difficulty: 10/5

HusnaSari commented 2 years ago

Eta: 45 minutes