A begginer friendly repository which helps the beginner to start their open source contribution easily.
- Sign up or sign in to your Github account.
- Register yourself at Hacktoberfest 2022 using your Github account.
- Come back to this Hacktoberfest Repo.
- Click on Fork Repo.
- Add Different Types Of Algo (For Eg: BruteForce , Greedy etc) with your favourite language and start Pull Request! Have a great time doing it.
- first fork this repo
- make a directory/folder on your local system and initial it,
mkdir <your directory name>
git init
- then clone this repository on your local system by running below command
git clone "your forked repo url"
- Work on the project
- after creating your changes and in order to add your changes run the following command
git add .
- Its time to commit the changes made
git commit -m "your valid commit message"
- then push the changes that you have made, run the below command,
git push -u origin main