Skip to content

Latest commit

 

History

History
145 lines (88 loc) · 3.13 KB

README.md

File metadata and controls

145 lines (88 loc) · 3.13 KB

DATA STRUCTURE AND ALGORITHMS PROBLEMS

DSA_Resources

Best 𝗗𝗮𝘁𝗮 𝘀𝘁𝗿𝘂𝗰𝘁𝘂𝗿𝗲 𝗮𝗻𝗱 𝗔𝗹𝗴𝗼𝗿𝗶𝘁𝗵𝗺 courses on YouTube .

1. 𝗖++ :

2. 𝗝𝗔𝗩𝗔 :

3. 𝗣𝗬𝗧𝗛𝗢𝗡 :

-https://lnkd.in/dMMsdcD2 (freeCodeCamp )

-https://lnkd.in/dzfyN6kw (Amulya Academy)

4. Javscript:

5. C:

This repository contains solutions to many data structure and algorithm problems which will help you in becomming good in problem solving skills

Supported Languages

You can use language in which you are comfortable

Contribute

  1. Fork the Repository

  2. Clone the Forked Repository to your local machine.

    git clone https://github.com/<your GitHub user name>/Data-structure-and-algorithms.git.
    
  3. Change the directory to Data structure and algorithm.

    cd Data-structure-and-algorithms
  4. Add remote to the Original Repository.

    git remote add upstream https://github.com/NSCC-BPIT/Data-structure-and-algorithms.git
    
  5. Check the remotes for this repository.

git remote -v
  1. 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
  1. Create a new branch.
git checkout -b <your_branch_name>
  1. Perform your desired changes to the code base.

  2. Track your changes:heavy_check_mark: .

git add . 
  1. Commit your changes .
git commit -m "Relevant message"
  1. Push the committed changes in your feature branch to your remote repo.
git push -u origin <your_branch_name>
  1. To create a pull request, click on compare and pull requests. Please ensure you compare your feature branch to the desired branch of the repository you are supposed to make a PR to.

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

  3. Click on Create Pull Request.

  4. Voila! You have made a PR to this repo. Sit back patiently and relax while your PR is reviewed

Show your support

Give a ⭐ if you like this repo.

Contributors