This repository is open to all GitHub community members. Anyone can contribute without being an official collaborator.
Hacktoberfest is a month-long celebration from October 1st - 31st, sponsored by Digital Ocean and GitHub. It encourages people to contribute to Open Source. Create your first pull request to any public repository and start contributing to the open-source developer community.
For more details, visit the official website: Hacktoberfest.
https://hacktoberfest.digitalocean.com/
1.Inside the language folder, name your file according to the algorithm you're implementing.
2. Write your code or make changes, then submit a pull request.
- Fork this repository
Fork the repository and make the necessary changes in the code. You can edit it online or by cloning it to your local machine.
2.Clone your forked repository.
git clone https://github.com/<your-username>/DSAHacktoberFest.git
- Navigate to the project directory
cd DSAHacktoberFest
4.Create a new branch
git checkout -b <branch-name>
5.Make your changes.
Perform your desired modifications to the codebase.
6.Stage your changes
git add .
7.Commit your changes
git commit -m "Describe your changes"
8.Push your changes to the remote repository.
git push -u origin <branch_Name>
Go to your forked repository, click on "Compare & pull request," and ensure you are comparing your feature branch with the appropriate branch of the original repository.