Best ๐๐ฎ๐๐ฎ ๐๐๐ฟ๐๐ฐ๐๐๐ฟ๐ฒ ๐ฎ๐ป๐ฑ ๐๐น๐ด๐ผ๐ฟ๐ถ๐๐ต๐บ courses on YouTube .
-
https://lnkd.in/dxWpHRjU (Raj Vikramaditya )
-
https://lnkd.in/dP_i8_JA (Love Babbar )
-
https://lnkd.in/dsP7bUwd (Apna College )
-
https://lnkd.in/dMcKptbz (Luv Kumar )
-
https://lnkd.in/dkuBt-vi (Shikhar Garg )
-
https://lnkd.in/dxWpHRjU (Raj Vikramaditya )
-
https://lnkd.in/d78gTubS (Kunal Kushwaha )
-
https://lnkd.in/dSrTTWaC (Sumeet Malik )
-https://lnkd.in/dMMsdcD2 (freeCodeCamp )
-https://lnkd.in/dzfyN6kw (Amulya Academy)
-
https://youtube.com/playlist?list=PL-vigTxnFfHRovy_UmfIjRBy-xvP2CJd9 (Khushboo Chaurasiya)
-
https://youtube.com/playlist?list=PL_HlKez9XCSOi5thYDzipbJ2pEdzop7vx ( Ajay Suneja )
- https://youtube.com/playlist?list=PLBlnK6fEyqRj9lld8sWIUNwlKfdUoPd1Y(Neso academy)
- https://youtube.com/playlist?list=PLu0W_9lII9ahIappRPN0MCAgtOu3lQjQi(codewithharry)
- https://youtube.com/playlist?list=PLdo5W4Nhv31bbKJzrsKfMpo_grxuLl8LU(Jenny's lecture).
This repository contains solutions to many data structure and algorithm problems which will help you in becomming good in problem solving skills
You can use language in which you are comfortable
-
Fork the Repository
-
Clone the Forked Repository to your local machine.
git clone https://github.com/<your GitHub user name>/Data-structure-and-algorithms.git.
-
Change the directory to Data structure and algorithm.
cd Data-structure-and-algorithms
-
Add remote to the Original Repository.
git remote add upstream https://github.com/NSCC-BPIT/Data-structure-and-algorithms.git
-
Check the remotes for this repository.
git remote -v
- 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
- Create a new branch.
git checkout -b <your_branch_name>
-
Perform your desired changes to the code base.
-
Track your changes:heavy_check_mark: .
git add .
- Commit your changes .
git commit -m "Relevant message"
- Push the committed changes in your feature branch to your remote repo.
git push -u origin <your_branch_name>
-
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. -
Add appropriate title and description to your pull request explaining your changes and efforts done.
-
Click on
Create Pull Request
. -
Voila! You have made a PR to this repo. Sit back patiently and relax while your PR is reviewed
Give a โญ if you like this repo.