To improve my coding skills, I practiced on various websites like HackerRank, Codility, LeetCode, and more. The main reason for creating this repository is to document all the "mind workings" during this process. The coding is primarily done in Python, but you are welcome to add your solutions or suggestions in any language.
- CA HTML Practice
- File Handling
- Fundamentals
- List Manipulation
- Multiple Concepts
- String Manipulation
It would be great if anyone could join me, so feel free to make your pull requests to this repository.
Fork this repository to your own GitHub account.
Clone your forked repository to your local machine:
git clone <your-forked-repository-url>
Add upstream for your local repository:
git remote add upstream https://github.com/UserName/Coding_Practice.git
Get the newest version of this repository:
git pull upstream main
Create a new branch for your changes/codes/anything:
git checkout -b your-branch
Do whatever you want to:
- Fix bugs
- Add new websites to practice coding
- Use new languages to solve problems
- Provide any advice
Get the newest version of this repository:
git checkout master git pull upstream main git checkout your-branch git rebase main
Commit your changes:
git add . git commit -m "Your commit message" git push origin your-branch
Go to GitHub to make your pull request.