All Projects → Ayush7614 → Daily-Coding-DS-ALGO-Practice

Ayush7614 / Daily-Coding-DS-ALGO-Practice

Licence: MIT License
A open source project🚀 for bringing all interview💥💥 and competative📘 programming💥💥 question under one repo📐📐

Programming Languages

C++
36643 projects - #6 most used programming language
java
68154 projects - #9 most used programming language
c
50402 projects - #5 most used programming language
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Daily-Coding-DS-ALGO-Practice

geeks-for-geeks-solutions
Solutions of questions on Geeks-for-Geeks.Solution Available in C++.
Stars: ✭ 28 (-89.02%)
Mutual labels:  data-structures, algorithms-and-data-structures, hacktoberfest-accepted, hacktoberfest2021
DSA
Implementation of various data structures and algorithms.
Stars: ✭ 15 (-94.12%)
Mutual labels:  data-structures, hacktoberfest-accepted, hacktoberfest2021
TheAlgorithms
This contains whatever you need to study about Algos...
Stars: ✭ 21 (-91.76%)
Mutual labels:  algorithms-and-data-structures, hacktoberfest-accepted, hacktoberfest2021
Data-Structures-and-Algorithm-C-
Hi folks🖐🏻 , I'm maintaining this repository, feel free to open a pull request and contribute! :)
Stars: ✭ 39 (-84.71%)
Mutual labels:  data-structures, hacktoberfest-accepted, hacktoberfest2021
Data Structures For Hacktoberfest
A repository to get started with open source and contribute in Hacktoberfest . You can add any data structures and algorithms code in the language of your choice.
Stars: ✭ 16 (-93.73%)
Mutual labels:  algorithms-and-data-structures, hacktoberfest-accepted, hacktoberfest2021
ListBot
ListBot is a Discord Bot which let's you create community lists on each channel.
Stars: ✭ 22 (-91.37%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Hacktober-Fest-2021
Repository for community contributions
Stars: ✭ 23 (-90.98%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
chic-ui
Lightweight CSS-in-JS styled UI Component Library for React
Stars: ✭ 39 (-84.71%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
DSA-CRACKER
This is an attempt to solve 450 questions carefully curated by Love Babbar.
Stars: ✭ 92 (-63.92%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
FB-Ads-Opt-UCB
The easiest way to optimize Facebook Ads using Upper Confidence Bound Algorithm. 💻
Stars: ✭ 23 (-90.98%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
DSA
Write DSA Codes into it
Stars: ✭ 18 (-92.94%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
algoexpert-data-structures-algorithms
A collection of solutions for all problem statements on the AlgoExpert Coding Interview platform.
Stars: ✭ 134 (-47.45%)
Mutual labels:  data-structures, algorithms-and-data-structures
kartik python
It's my python repository, where I upload various python projects using many kinds of modules from tkinter to opencv to pygames. It's very fun to code them :)
Stars: ✭ 14 (-94.51%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
To-Do-List
To-Do-List javascript project
Stars: ✭ 13 (-94.9%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
DeveloperFolio
A DevFolio/Developer Portfolio built using ReactJs and Animation libraries.
Stars: ✭ 51 (-80%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Context-Aware-Recommender
Hybrid Recommender System
Stars: ✭ 16 (-93.73%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
hacktoberfest-2021
Hacktoberfest 2021. Don't forget to spread love and if you like give me a ⭐️
Stars: ✭ 17 (-93.33%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
C-plus-plus-Algorithms
Repo contains some of the most common Data Structure and Algorithm in cpp. It will be helpful in future application of Competitive Programming as well as various tech Interviews.
Stars: ✭ 19 (-92.55%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
HacktoberFest 2021
Hacktoberfest 2021 contribution repository✨
Stars: ✭ 43 (-83.14%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Fake APIs
Beginner friendly Custom REST-APIs creation for various development and testing purposes.🎯🌎This project has been opened for Contributions for Hacktoberfest2021.
Stars: ✭ 17 (-93.33%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021

🎯💻Daily-Coding-DS-ALGO-Practice🏆🏅

This repository contains all the Competitive programming questions and Interview questions. The main aim of this repository is to help students who are preparing for the interview. This contains questions from popular coding platforms including Hackerank, Codechef, LeetCode, Codeforces, GeeksforGeeks, and many more.

If you're practicing on the coding platforms mentioned above, also if you want to contribute those then you can add the questions in this repository.

Open Source Programs that we are part of

LGMSOC LGMSOC

PRs Welcome GitHub pull requests GitHub issues

You can take help from these links and add questions in this repository after solving and learning any kind of contribution is welcome

Owner

Popular questions in

  • Hackerank
  • Codechef
  • Codeforce
  • Leetcode
  • Gfg
  • Data Structures
  • Algorithms

Overview

The main aim of the project is to bring all the Interview and Competitive programming questions under one repository.

Contributing

1. Fork this repository.

2. Clone your forked copy of the project.

git clone --depth 1 https://github.com/<your_name>/Daily-Coding-DS-ALGO-Practice.git

3. Navigate to the project directory 📁 .

cd Daily-Coding-DS-ALGO-Practice

4. Add a reference(remote) to the original repository.

git remote add upstream https://github.com/Ayush7614/Daily-Coding-DS-ALGO-Practice

5. Check the remotes for this repository.

git remote -v

6. 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

7. Create a new branch.

git checkout -b <your_branch_name>

8. Perform your desired changes to the code base.

9. Track your changes✔️ .

git add . 

10. Commit your changes .

git commit -m "Relevant message"

11. Push the committed changes in your feature branch to your remote repo.

git push -u origin <your_branch_name>

12. 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.

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

14. Click on Create Pull Request.

15 Voila! You have made a PR to the awesome-developer-portfolio project. Sit back patiently and relax while your PR is reviewed.

In case of any help, please free to contact me via mail @ [email protected]

Contributors

Thanks go to these Wonderful People 👨🏻‍💻: 🚀 Contributions of any kind are welcome!

🌟 Stargazers Over Time 🌟

Stargazers over time

Project Maintainers 😃


Amit Kumar Mishra

💻

Saurabh Tiwari

💻

Ravi Kumar

💻

Project Admin ❤️

                        

Happy Coding 👨‍💻

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].