-
We will be posting a problem Weekly.
-
Make sure you checkout problem of Latest week.
-
You have time till end of the week to Submit your code.
-
If you are unable to solve, checkout answer which we will be posting at the end of week and do solve upcoming weeks problem.
Fork this repository by clicking on the Fork button on the top of this page. This will create a copy of this repository in your account.
Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the copy to clipboard icon.
Open a terminal and run the following git command
git clone "https://github.com/<YOUR_USERNAME>/algo_plus_plus.git"
Replace <YOUR_USERNAME> by your GitHub username.
For example:
git clone "https://github.com/akshat-fsociety/algo_plus_plus.git"
Change to the repository directory on your computer (if you are not already there):
cd (filename)
Now create a branch using the git checkout command
git checkout -b your-new-branch-name
For example:
git checkout -b dev_username
git add .
Now commit
git commit -m <Add your message here>
git push origin <branch-name>
Replacing with the name of the branch you created earlier.