To improve my coding skills, I did a little practice in a few websites (codility, leetcode, ...). The main reason for creating this repo is that I want to record all the "mind workings" in this process.
###How to contribute
It would be great if anyone can join me, so feel free to make your pull requests to this repository.
######What you need to do is quite simple, such as:
1. fork this repository to your own github;
2. clone your forked repository to local;
#git clone the-name-of-your-forked-repository
3. add upstream for your local repository
#git remote add upstream https://github.com/PerthCharles/Coding.git
4. get the newest version of this repository
#git pull upstream master
5. add new branch for your changes/codes/anything
#git checkout -b your-branch
6. do whatever you want to:
a. fix bugs
b. add new website to pratice coding
c. use new language to solve problems
d. any advices
7. get the newest version of this repository
#git checkout master
#git pull upstream master
#git checkout your-branch
#git rebase master
8. commit your changes
#git add ...
#git commit ...
#git push origin your-branch
9. go to the github.com to make your pull request