Competitive programming is a type of intellectual sport or mind sport that involves solving well-defined algorithmic and computational problems within a specified time limit. Participants, often called competitive programmers, use programming languages to devise efficient solutions to these problems.
Just comment on the issue you want to code for. To contribute, simply follow the steps below!
Fork this repository.
Clone the forked repository.
bash
git clone https://github.com/<your-github-username>/project_name.git
bash
cd Flutter
This is one of the very important steps that you should follow to contribute to Open Source. A branch helps to manage the workflow, isolate your code and does not create a mess. To create a new branch:
bash
$ git branch <name_of_branch>
$ git checkout -b <name_of_branch>
Keep your cloned repo up to date by pulling from upstream (this will also avoid any merge conflicts while committing new changes)
bash
git pull origin main
Make changes in source code. 🚀
Stage your changes and commit 📝
bash
Add changes to Index
git add .
Commit to the local repo
git commit -m "<your_commit_message>"
bash
git push origin <branch-name>
Create a [Pull Request/PR]
🛠 (https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request) !
Congratulations! 🎉 Sit and relax, you've made your contribution to the Competitive Programming repository of GDSC Cummins under Hacktoberfest 2023. 🌟
When submitting your code, make sure to reference the question name so that your code is accepted without any issues.