DSCSRMNCR / DSA-Code-Snippet

This repository is for adding codes of data structures and algorithms, leetCode, hackerrank etc solutions in different languages
4 stars 11 forks source link

Move all zeroes to end #6

Open Manikant25 opened 3 years ago

Manikant25 commented 3 years ago

Given an array like[15, 12, 0, 0, 0, 2, 2, 19, 6, 17, 16, 20, 0, 2 ,16, 0 ,10 ,0 ,14, 15]. Move all zeroes to end

Output - 15 12 2 2 19 6 17 16 20 2 16 10 14 15 0 0 0 0 0 0

Khushbu2411 commented 3 years ago

Can I do this?

AbhinavRajputEXE commented 3 years ago

I'm on it.

Manikant25 commented 3 years ago

Yes, go ahead! @Khushbu2411

kartik633 commented 3 years ago

Can i do that

Khushbu2411 commented 3 years ago

remote: Permission to DSCSRMNCR/DSA-Code-Snippet.git denied to Khushbu2411. fatal: unable to access 'https://github.com/DSCSRMNCR/DSA-Code-Snippet.git/': The requested URL returned error: 403

Manikant25 commented 3 years ago

First, fork the repo. And read the readme for more intructions.