This repository is open for everyone to learn about algorithm and try to write algorithm in your own way.
- Fork this Repository using the button at the top
- Clone your fork repository to your local pc with
git clone <url>
- Create new branch for your modifications with
git branch <branch_name>
andgit checkout <branch_name>
- Make modification in your prefer algorithm.
- Add your file with
git add -A
and commit withgit commit -m "<message>"
and push withgit push origin <branch_name>
- Create Pull Request to Submit your code to us