All Projects → vineethm1627 → SDE_Sheet_Striver

vineethm1627 / SDE_Sheet_Striver

Licence: other
C++ Solutions of 180 Questions [30 Days] of Strivers SDE Sheet , YouTube Channel TAKEUFORWARD (Raj Vikramaditya bhaiyaa)

Programming Languages

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

Projects that are alternatives of or similar to SDE Sheet Striver

Data-Structures-Algorithms
Data Structures & Algorithms 💥
Stars: ✭ 17 (-90.96%)
Mutual labels:  dsa, strivers-sde-sheet
ctci-python-solutions
Cracking the Coding Interview in Python 3. The solutions all have detailed explanations with visuals.
Stars: ✭ 1,062 (+464.89%)
Mutual labels:  interview-preparation
Competitive Programming
My competitive programming guide,reading materials, link to system and design interview preparation and my own coding solutions from Codechef, Leetcode,Geeks for Geeks, HackerRank , spoj, codesignal, codebyte, codeblocks and other online judges
Stars: ✭ 206 (+9.57%)
Mutual labels:  interview-preparation
Coding Interview University
A complete computer science study plan to become a software engineer.
Stars: ✭ 204,859 (+108867.55%)
Mutual labels:  interview-preparation
Accessibility interview questions
A starting point for questions to ask someone that wants you to give them a job
Stars: ✭ 236 (+25.53%)
Mutual labels:  interview-preparation
dsa
data structure and algorithm - examples and implementations
Stars: ✭ 13 (-93.09%)
Mutual labels:  dsa
Sre Interviews
Curated list of good SRE interview questions.
Stars: ✭ 210 (+11.7%)
Mutual labels:  interview-preparation
CPP-Questions
Competitive Programming Questions
Stars: ✭ 52 (-72.34%)
Mutual labels:  interview-preparation
Competitive-Programming-June-Course-
Problem Solving Ability Skills Course
Stars: ✭ 24 (-87.23%)
Mutual labels:  interview-preparation
Javascript Algorithms
📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readings
Stars: ✭ 133,406 (+70860.64%)
Mutual labels:  interview-preparation
Tech Interview Handbook
💯 Curated interview preparation materials for busy engineers
Stars: ✭ 64,851 (+34395.21%)
Mutual labels:  interview-preparation
Interview Techdev Guide
This repository contains curated technical interview questions by fn+geeks community
Stars: ✭ 252 (+34.04%)
Mutual labels:  interview-preparation
CPPNotes
【C++ 面试 + C++ 学习指南】 一份涵盖大部分 C++ 程序员所需要掌握的核心知识。
Stars: ✭ 557 (+196.28%)
Mutual labels:  interview-preparation
How Companies Hire
An inside look into how top tech companies hire
Stars: ✭ 234 (+24.47%)
Mutual labels:  interview-preparation
Test-Bank
Interview preparation and practice problems
Stars: ✭ 43 (-77.13%)
Mutual labels:  interview-preparation
Machine Learning Interview Enlightener
This repo is meant to serve as a guide for Machine Learning/AI technical interviews.
Stars: ✭ 207 (+10.11%)
Mutual labels:  interview-preparation
Interviews
Everything you need to know to get the job.
Stars: ✭ 54,875 (+29088.83%)
Mutual labels:  interview-preparation
TheJobInterviewGuide
A job guide to help developers get through interviews and get amazing jobs!
Stars: ✭ 267 (+42.02%)
Mutual labels:  interview-preparation
interview-questions
Популярные HTML / CSS / JavaScript / ECMAScript / TypeScript / React / Vue / Angular / Node вопросы на интервью и ответы на них (https://tinyurl.com/wxysrpsy)
Stars: ✭ 3,294 (+1652.13%)
Mutual labels:  interview-preparation
cpAPI
A Flask API that gives updates about the upcoming contests on various Coding Platforms.
Stars: ✭ 13 (-93.09%)
Mutual labels:  dsa

Striver SDE Sheet [30 Days Challenge]

Link to the SDE Sheet: view

Collection of the solutions in C++

Important Questions

S.No. Question Name Logic Used Topic Date
1 Missing and Repeating repeated xor Bit Manipulation 02 June 21
2 Duplicate Number Linked List Cycle Detection Arrays and Linked List 02 June 21
3 Merge Sorted Space in O(1) Space Gap Method: Shear Sort Sorting 02 June 21
4 Set Matrix Zeros in place, bottom to top, right to left Matrix 03 June 21
5 Reverse Pairs Count count inversions using merge sort Arrays 04 June 21
6 Reverse in Groups of K addFirst, original and temp pointers Linked List 06 June 21
7 Clone list with random pointers adjacent copy nodes Linked List 07 June 21
8 Trapping Rainwater 2 pointers, min(max_left, max_right) - arr[i] Two Pointers 07 June 21
9 Job Sequencing n-slots, job index in sorted array Greedy 08 June 21
10 Minimum Railways Platforms sorted: arrival vs dep times Greedy 08 June 21
11 Combination Sum without repetition recursion with 2 options; avoid duplicates Bactracking 12 June 21
12 Permutations of an Array fixing first position, all swaps Backtracking 13 June 21
13 Rat in a Maze backtracking, dfs calls in 4 directions Backtracking 14 June 21
14 M Coloring Graph backtracking, trying every color Bactracking 17 June 21
15 Median of 2 Sorted Arrays Contribution size partitioning of smaller array Binary Search 17 June 21
16 Allocate min pages monotonic search space of min possible max upper bound Binary Search 25 June 21
17 Median in Row sorted matrix count of left part of sorted array; upper_bound Binary Search 26 June 21
18 Count Total Set Bits f(n)=x*2^(x-1)+(n-2^x+1)+f(n-2^x) Recursion 26 June 21
19 Find nearest power of 2 <= n one by one set all the bits Bit Manipulation 26 June 21
20 Square of a number Left shift + recursion Bit Manipulation 27 June 21
21 LRU Cache Design Hashing + DLL {latest used on left near head} Linked List 30 June 21
22 Sliding Window Maximum Deque + store max at dq front Deque + Sliding Window 01 July 21
23 Largest rectangle in Histogram 3 vars: i-->nse, top = height, below top = pse Stacks 01 July 21
24 Longest Palindromic Substring Two pointer consecutive + 1 gap apart expansion Strings 01 July 21
25 Integer to Roman Store the exception symbols like 1, 4, 5, 9, etc Maths 01 July 21
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].