Skip to content

codedazzlers/DSA-Bootcamps

Repository files navigation

DSA-Bootcamps

DSA-Bootcamps is a initiative by Code Dazzlers to help students in problem solving. Here you will going to solve 200++ problems in the span of 6 week from all DSA topics.

  1. All session will be live on Google Meet.
  2. If you miss the live session, you can checkout the recorded session at our youtube channel.
  3. You can find all Assigments here.

Contribution Guidelines🏗

1. Fork this repository.

2. Clone your forked copy of the project.

git clone https://github.com/<your_user_name>/DSA-Bootcamps.git

3. Navigate to the project directory 📁 .

cd DSA-Bootcamps

4. Add a reference(remote) to the original repository.

git remote add upstream https://github.com/codedazzlers/DSA-Bootcamps.git

5. Check the remotes for this repository.

git remote -v

6. Always take a pull from the upstream repository to your master branch to keep it at par with the main project(updated repository).

git pull upstream main

7. Perfom your desired changes to the code base. Make Changes in your named folder only.

8. Track your changes:heavy_check_mark: .

git add . 

9. Commit your changes .

git commit -m "Topic Done"

10. Push the committed changes in your feature branch to your remote repo.

git push 

11. To create a pull request, click on compare and pull requests.

12. Add appropriate title and description to your pull request explaining your changes and efforts done.

13. Click on Create Pull Request.

14. Voila ❗ You have made a PR to the DSA-Bootcamps 💥 . Wait for your submission to be accepted and your PR to be merged.