edualgo / interview-corner

Many time, when an interview approaches, candidates start searching for different algorithms in different programming languages for practise. This project aims to build a website which will contain the codes along with the techniques and explanations so that it can be helpful for many
https://opensource.edualgoacademy.com/interview-corner/
MIT License
42 stars 41 forks source link

Move zeroes #77

Open ms1901 opened 3 years ago

ms1901 commented 3 years ago

I would like to add a problem to move zeroes to the end of the array while maintaining the order of elements. Input: [0,1,0,3,12] Output: [1,3,12,0,0]

I would like to work on this issue for SWOC'21. Problem link:https://leetcode.com/explore/featured/card/top-interview-questions-easy/92/array/567/

ms1901 commented 3 years ago

@Abhijit2505 pls let me know if I can work on this or not?