Skip to content

Practicing coding and recording my mind process for future purposes

License

Notifications You must be signed in to change notification settings

ProBm0203/Coding_Practice

Repository files navigation

Coding Practice 🎯🚀

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.

Table of Contents 📋

  • CA HTML Practice
  • File Handling
  • Fundamentals
  • List Manipulation
  • Multiple Concepts
  • String Manipulation

How to Contribute 👥

It would be great if anyone could join me, so feel free to make your pull requests to this repository.

What You Need to Do 🖥️

  1. Fork this repository to your own GitHub account.

  2. Clone your forked repository to your local machine:

    git clone <your-forked-repository-url>
  3. Add upstream for your local repository:

    git remote add upstream https://github.com/UserName/Coding_Practice.git
  4. Get the newest version of this repository:

    git pull upstream main
  5. Create a new branch for your changes/codes/anything:

    git checkout -b your-branch
  6. Do whatever you want to:

    • Fix bugs
    • Add new websites to practice coding
    • Use new languages to solve problems
    • Provide any advice
  7. Get the newest version of this repository:

    git checkout master
    git pull upstream main
    git checkout your-branch
    git rebase main
  8. Commit your changes:

    git add .
    git commit -m "Your commit message"
    git push origin your-branch
  9. Go to GitHub to make your pull request.


Releases

No releases published

Packages

No packages published