- Self-study Hacker Rank challenges: https://www.hackerrank.com/qdttdev
- Handy Online C++ Compiler: https://www.onlinegdb.com/online_c++_compiler
- Follow the question conditions closely
- Visualize the problem by drawing/ writing out how a solution is found
- Use Mathematics to manipulate the problem
- Open Git Bash
- Type
git clone
and paste the copied URL from your repository:
git clone https://github.com/qdttdev/Hacker-Rank.git
git pull
to download and update the repository (if contributed from another remote repository)- Work your magic and change things up!
git add --all
to add all changes.git commit -m 'Message for this version'
to commit new changes.git push
to push the changes to the repository.git status
to check if there's any new files not added.