All Projects → tarunsinghdev → DSA-CRACKER

tarunsinghdev / DSA-CRACKER

Licence: other
This is an attempt to solve 450 questions carefully curated by Love Babbar.

Programming Languages

C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to DSA-CRACKER

Interview Questions
List of all the Interview questions practiced from online resources and books
Stars: ✭ 187 (+103.26%)
Mutual labels:  interview, algorithm-challenges, interview-preparation
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 (-84.78%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021, hacktoberfest-2021
Interviews
Everything you need to know to get the job.
Stars: ✭ 54,875 (+59546.74%)
Mutual labels:  interview, algorithm-challenges, interview-preparation
Data-Structures-and-Algorithm-C-
Hi folks🖐🏻 , I'm maintaining this repository, feel free to open a pull request and contribute! :)
Stars: ✭ 39 (-57.61%)
Mutual labels:  interview-preparation, hacktoberfest-accepted, hacktoberfest2021
Hacktoberfest-2021
Create Hacktoberfest PRs. Star this Repo!⭐
Stars: ✭ 32 (-65.22%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021, hacktoberfest-2021
Codinginterviews
This repository contains coding interviews that I have encountered in company interviews
Stars: ✭ 2,881 (+3031.52%)
Mutual labels:  interview, algorithm-challenges, interview-preparation
codewars python solutions
My CodeWars solutions in Python.
Stars: ✭ 111 (+20.65%)
Mutual labels:  interview, algorithm-challenges, interview-preparation
Algorithmic-Problem-Solving
Solutions of algorithmic type of programming problems from sites like LeetCode.com, HackerRank.com, LeetCode.com, Codility.com, CodeForces.com, etc. using Java.
Stars: ✭ 20 (-78.26%)
Mutual labels:  interview, algorithm-challenges, interview-preparation
Hacktoberfest-2021
This repository dedicated to Hacktoberfest 2021. Hacktoberfest is a month long open source contribution program held in October every year by Digital Ocean. This is a beginner-friendly open source event.
Stars: ✭ 10 (-89.13%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021, hacktoberfest-2021
LuminousNewTab
Luminous New Tab is a beautiful 'new tab' browser extension that has an animated gradient background! New tabs will show your bookmarks, the time, weather and let you do searches too!
Stars: ✭ 18 (-80.43%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021, hacktoberfest-2021
HacktoberFest-2021
No description or website provided.
Stars: ✭ 278 (+202.17%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021, hacktoberfest-2021
Hacktoberfest2021-DSA
If You know the implementation of any DSA related topic/problem then you can contribute it in this repo. Raise Genuine PRs only. Your PRs will be accepted, keep patience. Star this Repo. You aren't allowed to Update README.md. Welcoming developers, content writers, and programming enthusiasts.
Stars: ✭ 232 (+152.17%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021, hacktoberfest-2021
helpafamily
Impactful ways to help families in need through donated meals, hygiene kits, and more. By Margarita Humanitarian Foundation.
Stars: ✭ 41 (-55.43%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021, hacktoberfest-2021
Leetcode
👏🏻 leetcode solutions for Humans™
Stars: ✭ 1,129 (+1127.17%)
Mutual labels:  interview, algorithm-challenges, interview-preparation
Data-Structures-And-Algorithms
Important data structure and algorithms codes and concept's open-source repository.
Stars: ✭ 48 (-47.83%)
Mutual labels:  interview-preparation, hacktoberfest-accepted, hacktoberfest2021
Coding-Interview-101
Solutions to LeetCode problems filtered with companies, topics and difficulty.
Stars: ✭ 21 (-77.17%)
Mutual labels:  interview, interview-preparation, faang-interview
github-fest-2021
No description or website provided.
Stars: ✭ 44 (-52.17%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021, hacktoberfest-2021
HackerRank-Solutions
My own HackerRank coding interview solutions
Stars: ✭ 30 (-67.39%)
Mutual labels:  algorithm-challenges, interview-preparation
Hacktoberfest 2021
Hello, Welcome to this repo. don't forget to read guidelines in readme.md
Stars: ✭ 126 (+36.96%)
Mutual labels:  hacktoberfest2021, hacktoberfest-2021
HacktoberFest 2021
Hacktoberfest 2021 contribution repository✨
Stars: ✭ 43 (-53.26%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021

DSA-CRACKER

LOC Stars Badge Forks Badge GitHub contributors

If you appreciate my work, please 🌟 this repository. It motivates me. 🚀 🚀

DSA CRACKER sheet : link

🔴 🔴 IMPORTANT : If you forked this repo and want to be updated with the changes made to this repo refer How do I update a GitHub forked repository?

▶️ Update Corner

  • Added Clone A Graph problem in the Graphs topic.

🎁 You Can Contribute.

Make a pull request :

  • If you think you have the better optimal solution.
  • If you have the solution to the unsolved problem marked with "red-cross".

Hello, folks!

This is an attempt to solve 450 questions carefully curated by our very own Love Babbar.

Topics

Array

# Title Solution Time Space Difficulty Note
1 Reverse an Array ✔️ - - - -
2 Find the maximum and minimum element in an array ✔️ - - - -
3 Find the "Kth" max and min element of an array ✔️ - - - -
4 Given an array which consists of only 0, 1 and 2. Sort the array without using any sorting algo ✔️ - - - -
5 Move all the negative elements to one side of the array ✔️ - - -
6 Find the Union and Intersection of the two sorted arrays. ✔️ - - - -
7 Write a program to cyclically rotate an array by one. ✔️ - - - -
8 find Largest sum contiguous Subarray V. IMP ✔️ - - - -
9 Minimise the maximum difference between heights V.IMP ✔️ - - - Revisit
10 Minimum no. of Jumps to reach end of an array ✔️ - - - Revisit
11 find duplicate in an array of N+1 Integers ✔️ - - - -
12 Merge 2 sorted arrays without using Extra space. ✔️ - - - Revisit
13 Kadane's Algo [V.V.V.V.V IMP] ✔️ - - - -
14 Merge Intervals ✔️ - - - -
15 Next Permutation ✔️ - - - -
16 Count Inversion ✔️ - - - -
17 Best time to buy and Sell stock ✔️ - - - Pending variations
18 find all pairs on integer array whose sum is equal to given number ✔️ - - - -
19 find common elements In 3 sorted arrays ✔️ - - - -
20 Rearrange the array in alternating positive and negative items with O(1) extra space ✔️ - - - -
21 Find if there is any subarray with sum equal to 0 ✔️ - - - -
22 Find factorial of a large number ✔️ - - -
23 find maximum product subarray ✔️ - - - -
24 Find longest coinsecutive subsequence ✔️ - - - -
25 Given an array of size n and a number k, fin all elements that appear more than " n/k " times. ✔️ - - - -
26 Maximum profit by buying and selling a share atmost twice ✔️ - - - -
27 Find whether an array is a subset of another array ✔️ - - -
28 Find the triplet that sum to a given value ✔️ - - - -
29 Trapping Rain water problem ✔️ - - - Revisit
30 Chocolate Distribution problem ✔️ - - - -
31 Smallest Subarray with sum greater than a given value - - - XXXX
32 Three way partitioning of an array around a given value ✔️ - - -
33 Minimum swaps required bring elements less equal K together ✔️ - - - -
34 Minimum no. of operations required to make an array palindrome ✔️ - - - -
35 Median of 2 sorted arrays of equal size ✔️ - - - Revisit
36 Median of 2 sorted arrays of different size ✔️ - - - -


Matrix

# Title Solution Time Space Difficulty Note
1 Spiral traversal on a Matrix ✔️
2 Search an element in a matriix ✔️
3 Find median in a row wise sorted matrix ✔️
4 Find row with maximum no. of 1's ✔️


StackQueue

# Title Solution Time Space Difficulty Note
1 Implement Stack from Scratch ✔️ - - -
2 https://www.tutorialspoint.com/javaexamples/data_stack.htm ✔️ - - - -
3 Implement 2 stack in an array ✔️ - - - -
4 Find the middle element of a stack - - - -
5 Implement "N" stacks in an Array ✔️ - - -
6 Check the expression has valid or Balanced parenthesis or not. ✔️ - - - -
7 Reverse a String using Stack ✔️ - - - -
8 Design a Stack that supports getMin() in O(1) time and O(1) extra space. ✔️ - - - -
9 Find the next Greater element ✔️ - - - -
10 The celebrity Problem ✔️ - - - -
11 Arithmetic Expression evaluation ✔️ - - - -
12 Evaluation of Postfix expression ✔️ - - - -
13 Implement a method to insert an element at its bottom without using any other data structure. ✔️ - - - -
14 Reverse a stack using recursion ✔️ - - - -
15 Sort a Stack using recursion ✔️ - - - -
16 Merge Overlapping Intervals ✔️ O(n*logn) O(1) - -
17 Largest rectangular Area in Histogram ✔️ O(n) O(n) - -
18 Length of the Longest Valid Substring ✔️ O(n) O(1) - -
19 Expression contains redundant bracket or not ✔️ O(n) O(n) - -
20 Implement Stack using Queue ✔️ O(n) O(n) - -


Backtracking

# Title Solution Time Space Difficulty Note
1 Rat In A Maze ✔️ - - -
2 N Queens Problem ✔️ - - -


Graphs

# Title Solution Time Space Difficulty Note
9 Clone A Graph ✔️ - - -
13 Implement Topological Sorting ✔️ - - -
32 Cheapest Flights within k stops ✔️ Quadratic Quadratic Medium


You can find me on LinkedIn to stay updated and follow along with my journey.

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