├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── C++ Programs ├── Car_Parking_Lot.cpp ├── Car_Parking_Lot.exe ├── Dijkstra Algorithm.cpp ├── Extracting elements.cpp ├── Graph Unsorted Unweighted.cpp ├── Graph Weighted.cpp ├── Graph Weighted.exe ├── Graphs BFS and DFS.cpp ├── HashTable.cpp ├── Hashing_Liner probing.cpp ├── Kahn's Algorithm.cpp ├── Lambda Functions.cpp ├── Linked List.cpp ├── Prims Algo(prio que).cpp ├── Test.cpp ├── Test.exe ├── Timer.cpp ├── Topological Graph.cpp ├── Tree.cpp ├── factorial.cpp ├── graph bipartition.cpp ├── linked_list.cpp ├── linked_list.exe ├── new.cpp ├── test1.cpp ├── test1.exe └── vector-pairs.cpp ├── Coding Rounds ├── Ascii.cpp ├── Basics.md ├── Bit Manipulation │ ├── Grey Numbers.cpp │ ├── Introduction.md │ ├── Number of 1s in binary.cpp │ ├── Rotate Bits.cpp │ ├── Shortcuts.cpp │ ├── Sum.cpp │ └── Swap Numbers.cpp ├── Dynamic Programming │ ├── Introduction.md │ └── test.js ├── Graphs │ ├── Adjacency List.cpp │ ├── Adjacency Matrix DFS.cpp │ ├── Adjacency Matrix.cpp │ ├── BFS.cpp │ ├── Bipartite BFS.cpp │ ├── Bipartite DFS.cpp │ ├── Connected Components.md │ ├── Cycle Detect BFS.cpp │ ├── Cycle Detect DAG.cpp │ ├── Cycle Detect DFS.cpp │ ├── Cycle Detect Directed Graph.cpp │ ├── Djisktra Algorith.cpp │ ├── Graph representation.md │ ├── Introduction.md │ ├── Kahn's Algorithm.cpp │ ├── Shortest Distance Undirected Graph.cpp │ ├── Shortest Path DAG Weighted.cpp │ ├── Topological Sort.cpp │ ├── Topological Sort.md │ └── Traversals.md ├── Greedy │ └── Introduction.md ├── Heap │ └── Introduction.md ├── Linked List │ ├── DeleteNthLast.cpp │ ├── DetectingLoop.cpp │ ├── Palandromic.cpp │ ├── Remove Duplicate.cpp │ ├── Remove Elements.cpp │ ├── Reverse.cpp │ ├── Swap Nodes.cpp │ └── Two Sum.cpp ├── MergeSort.cpp ├── Recursion │ ├── Array Sort.cpp │ ├── N print.cpp │ ├── Recursion.md │ ├── Remove Middle Stack.cpp │ ├── Reverse Stack.cpp │ └── Stack Sort.cpp └── Time Complixity.md ├── How to start.md ├── Images └── dsasf.jpg ├── Long Sets └── Pathrise 93 SDE │ ├── Algorithms │ ├── 1.cpp │ ├── 10.cpp │ ├── 4.cpp │ ├── 7.cpp │ ├── 8.cpp │ └── 9.cpp │ ├── More Algorithms │ └── 1.cpp │ └── SQL │ └── All.txt ├── README.md ├── Random.md ├── RandomizeDSA.cpp ├── System Design ├── Approach.md ├── Introduction.md └── System Design.md ├── Technical Rounds ├── Algorithms.md ├── Big O cheetsheet.md ├── C++.md ├── CSS.md ├── Choosing Data Structure.md ├── Company Questions.md ├── Data Structures.md ├── Database.md ├── Deployment.md ├── Final.md ├── HR.md ├── HTML.md ├── JavaScript.md ├── Linux.md ├── MongoDB.md ├── Node Js.md ├── OOPS.md ├── Operating System.md ├── Project Question.md ├── Python Basics.md ├── README.md ├── React Js.md ├── SQL.md ├── Sql Queries.md └── Vue Js.md ├── Test.js ├── tempCodeRunnerFile.js └── test.cpp /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /C++ Programs/Car_Parking_Lot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/Car_Parking_Lot.cpp -------------------------------------------------------------------------------- /C++ Programs/Car_Parking_Lot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/Car_Parking_Lot.exe -------------------------------------------------------------------------------- /C++ Programs/Dijkstra Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/Dijkstra Algorithm.cpp -------------------------------------------------------------------------------- /C++ Programs/Extracting elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/Extracting elements.cpp -------------------------------------------------------------------------------- /C++ Programs/Graph Unsorted Unweighted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/Graph Unsorted Unweighted.cpp -------------------------------------------------------------------------------- /C++ Programs/Graph Weighted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/Graph Weighted.cpp -------------------------------------------------------------------------------- /C++ Programs/Graph Weighted.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/Graph Weighted.exe -------------------------------------------------------------------------------- /C++ Programs/Graphs BFS and DFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/Graphs BFS and DFS.cpp -------------------------------------------------------------------------------- /C++ Programs/HashTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/HashTable.cpp -------------------------------------------------------------------------------- /C++ Programs/Hashing_Liner probing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/Hashing_Liner probing.cpp -------------------------------------------------------------------------------- /C++ Programs/Kahn's Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/Kahn's Algorithm.cpp -------------------------------------------------------------------------------- /C++ Programs/Lambda Functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/Lambda Functions.cpp -------------------------------------------------------------------------------- /C++ Programs/Linked List.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C++ Programs/Prims Algo(prio que).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/Prims Algo(prio que).cpp -------------------------------------------------------------------------------- /C++ Programs/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/Test.cpp -------------------------------------------------------------------------------- /C++ Programs/Test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/Test.exe -------------------------------------------------------------------------------- /C++ Programs/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/Timer.cpp -------------------------------------------------------------------------------- /C++ Programs/Topological Graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/Topological Graph.cpp -------------------------------------------------------------------------------- /C++ Programs/Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/Tree.cpp -------------------------------------------------------------------------------- /C++ Programs/factorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/factorial.cpp -------------------------------------------------------------------------------- /C++ Programs/graph bipartition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/graph bipartition.cpp -------------------------------------------------------------------------------- /C++ Programs/linked_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/linked_list.cpp -------------------------------------------------------------------------------- /C++ Programs/linked_list.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/linked_list.exe -------------------------------------------------------------------------------- /C++ Programs/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/new.cpp -------------------------------------------------------------------------------- /C++ Programs/test1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/test1.cpp -------------------------------------------------------------------------------- /C++ Programs/test1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/test1.exe -------------------------------------------------------------------------------- /C++ Programs/vector-pairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/C++ Programs/vector-pairs.cpp -------------------------------------------------------------------------------- /Coding Rounds/Ascii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Ascii.cpp -------------------------------------------------------------------------------- /Coding Rounds/Basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Basics.md -------------------------------------------------------------------------------- /Coding Rounds/Bit Manipulation/Grey Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Bit Manipulation/Grey Numbers.cpp -------------------------------------------------------------------------------- /Coding Rounds/Bit Manipulation/Introduction.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Coding Rounds/Bit Manipulation/Number of 1s in binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Bit Manipulation/Number of 1s in binary.cpp -------------------------------------------------------------------------------- /Coding Rounds/Bit Manipulation/Rotate Bits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Bit Manipulation/Rotate Bits.cpp -------------------------------------------------------------------------------- /Coding Rounds/Bit Manipulation/Shortcuts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Bit Manipulation/Shortcuts.cpp -------------------------------------------------------------------------------- /Coding Rounds/Bit Manipulation/Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Bit Manipulation/Sum.cpp -------------------------------------------------------------------------------- /Coding Rounds/Bit Manipulation/Swap Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Bit Manipulation/Swap Numbers.cpp -------------------------------------------------------------------------------- /Coding Rounds/Dynamic Programming/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Dynamic Programming/Introduction.md -------------------------------------------------------------------------------- /Coding Rounds/Dynamic Programming/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Dynamic Programming/test.js -------------------------------------------------------------------------------- /Coding Rounds/Graphs/Adjacency List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Graphs/Adjacency List.cpp -------------------------------------------------------------------------------- /Coding Rounds/Graphs/Adjacency Matrix DFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Graphs/Adjacency Matrix DFS.cpp -------------------------------------------------------------------------------- /Coding Rounds/Graphs/Adjacency Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Graphs/Adjacency Matrix.cpp -------------------------------------------------------------------------------- /Coding Rounds/Graphs/BFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Graphs/BFS.cpp -------------------------------------------------------------------------------- /Coding Rounds/Graphs/Bipartite BFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Graphs/Bipartite BFS.cpp -------------------------------------------------------------------------------- /Coding Rounds/Graphs/Bipartite DFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Graphs/Bipartite DFS.cpp -------------------------------------------------------------------------------- /Coding Rounds/Graphs/Connected Components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Graphs/Connected Components.md -------------------------------------------------------------------------------- /Coding Rounds/Graphs/Cycle Detect BFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Graphs/Cycle Detect BFS.cpp -------------------------------------------------------------------------------- /Coding Rounds/Graphs/Cycle Detect DAG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Graphs/Cycle Detect DAG.cpp -------------------------------------------------------------------------------- /Coding Rounds/Graphs/Cycle Detect DFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Graphs/Cycle Detect DFS.cpp -------------------------------------------------------------------------------- /Coding Rounds/Graphs/Cycle Detect Directed Graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Graphs/Cycle Detect Directed Graph.cpp -------------------------------------------------------------------------------- /Coding Rounds/Graphs/Djisktra Algorith.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Graphs/Djisktra Algorith.cpp -------------------------------------------------------------------------------- /Coding Rounds/Graphs/Graph representation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Graphs/Graph representation.md -------------------------------------------------------------------------------- /Coding Rounds/Graphs/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Graphs/Introduction.md -------------------------------------------------------------------------------- /Coding Rounds/Graphs/Kahn's Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Graphs/Kahn's Algorithm.cpp -------------------------------------------------------------------------------- /Coding Rounds/Graphs/Shortest Distance Undirected Graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Graphs/Shortest Distance Undirected Graph.cpp -------------------------------------------------------------------------------- /Coding Rounds/Graphs/Shortest Path DAG Weighted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Graphs/Shortest Path DAG Weighted.cpp -------------------------------------------------------------------------------- /Coding Rounds/Graphs/Topological Sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Graphs/Topological Sort.cpp -------------------------------------------------------------------------------- /Coding Rounds/Graphs/Topological Sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Graphs/Topological Sort.md -------------------------------------------------------------------------------- /Coding Rounds/Graphs/Traversals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Graphs/Traversals.md -------------------------------------------------------------------------------- /Coding Rounds/Greedy/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Greedy/Introduction.md -------------------------------------------------------------------------------- /Coding Rounds/Heap/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Heap/Introduction.md -------------------------------------------------------------------------------- /Coding Rounds/Linked List/DeleteNthLast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Linked List/DeleteNthLast.cpp -------------------------------------------------------------------------------- /Coding Rounds/Linked List/DetectingLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Linked List/DetectingLoop.cpp -------------------------------------------------------------------------------- /Coding Rounds/Linked List/Palandromic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Linked List/Palandromic.cpp -------------------------------------------------------------------------------- /Coding Rounds/Linked List/Remove Duplicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Linked List/Remove Duplicate.cpp -------------------------------------------------------------------------------- /Coding Rounds/Linked List/Remove Elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Linked List/Remove Elements.cpp -------------------------------------------------------------------------------- /Coding Rounds/Linked List/Reverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Linked List/Reverse.cpp -------------------------------------------------------------------------------- /Coding Rounds/Linked List/Swap Nodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Linked List/Swap Nodes.cpp -------------------------------------------------------------------------------- /Coding Rounds/Linked List/Two Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Linked List/Two Sum.cpp -------------------------------------------------------------------------------- /Coding Rounds/MergeSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/MergeSort.cpp -------------------------------------------------------------------------------- /Coding Rounds/Recursion/Array Sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Recursion/Array Sort.cpp -------------------------------------------------------------------------------- /Coding Rounds/Recursion/N print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Recursion/N print.cpp -------------------------------------------------------------------------------- /Coding Rounds/Recursion/Recursion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Recursion/Recursion.md -------------------------------------------------------------------------------- /Coding Rounds/Recursion/Remove Middle Stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Recursion/Remove Middle Stack.cpp -------------------------------------------------------------------------------- /Coding Rounds/Recursion/Reverse Stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Recursion/Reverse Stack.cpp -------------------------------------------------------------------------------- /Coding Rounds/Recursion/Stack Sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Coding Rounds/Recursion/Stack Sort.cpp -------------------------------------------------------------------------------- /Coding Rounds/Time Complixity.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /How to start.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Images/dsasf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Images/dsasf.jpg -------------------------------------------------------------------------------- /Long Sets/Pathrise 93 SDE/Algorithms/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Long Sets/Pathrise 93 SDE/Algorithms/1.cpp -------------------------------------------------------------------------------- /Long Sets/Pathrise 93 SDE/Algorithms/10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Long Sets/Pathrise 93 SDE/Algorithms/10.cpp -------------------------------------------------------------------------------- /Long Sets/Pathrise 93 SDE/Algorithms/4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Long Sets/Pathrise 93 SDE/Algorithms/4.cpp -------------------------------------------------------------------------------- /Long Sets/Pathrise 93 SDE/Algorithms/7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Long Sets/Pathrise 93 SDE/Algorithms/7.cpp -------------------------------------------------------------------------------- /Long Sets/Pathrise 93 SDE/Algorithms/8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Long Sets/Pathrise 93 SDE/Algorithms/8.cpp -------------------------------------------------------------------------------- /Long Sets/Pathrise 93 SDE/Algorithms/9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Long Sets/Pathrise 93 SDE/Algorithms/9.cpp -------------------------------------------------------------------------------- /Long Sets/Pathrise 93 SDE/More Algorithms/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Long Sets/Pathrise 93 SDE/More Algorithms/1.cpp -------------------------------------------------------------------------------- /Long Sets/Pathrise 93 SDE/SQL/All.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Long Sets/Pathrise 93 SDE/SQL/All.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/README.md -------------------------------------------------------------------------------- /Random.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Random.md -------------------------------------------------------------------------------- /RandomizeDSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/RandomizeDSA.cpp -------------------------------------------------------------------------------- /System Design/Approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/System Design/Approach.md -------------------------------------------------------------------------------- /System Design/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/System Design/Introduction.md -------------------------------------------------------------------------------- /System Design/System Design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/System Design/System Design.md -------------------------------------------------------------------------------- /Technical Rounds/Algorithms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Technical Rounds/Algorithms.md -------------------------------------------------------------------------------- /Technical Rounds/Big O cheetsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Technical Rounds/Big O cheetsheet.md -------------------------------------------------------------------------------- /Technical Rounds/C++.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Technical Rounds/C++.md -------------------------------------------------------------------------------- /Technical Rounds/CSS.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Technical Rounds/Choosing Data Structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Technical Rounds/Choosing Data Structure.md -------------------------------------------------------------------------------- /Technical Rounds/Company Questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Technical Rounds/Company Questions.md -------------------------------------------------------------------------------- /Technical Rounds/Data Structures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Technical Rounds/Data Structures.md -------------------------------------------------------------------------------- /Technical Rounds/Database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Technical Rounds/Database.md -------------------------------------------------------------------------------- /Technical Rounds/Deployment.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Technical Rounds/Final.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Technical Rounds/Final.md -------------------------------------------------------------------------------- /Technical Rounds/HR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Technical Rounds/HR.md -------------------------------------------------------------------------------- /Technical Rounds/HTML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Technical Rounds/HTML.md -------------------------------------------------------------------------------- /Technical Rounds/JavaScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Technical Rounds/JavaScript.md -------------------------------------------------------------------------------- /Technical Rounds/Linux.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Technical Rounds/MongoDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Technical Rounds/MongoDB.md -------------------------------------------------------------------------------- /Technical Rounds/Node Js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Technical Rounds/Node Js.md -------------------------------------------------------------------------------- /Technical Rounds/OOPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Technical Rounds/OOPS.md -------------------------------------------------------------------------------- /Technical Rounds/Operating System.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Technical Rounds/Operating System.md -------------------------------------------------------------------------------- /Technical Rounds/Project Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Technical Rounds/Project Question.md -------------------------------------------------------------------------------- /Technical Rounds/Python Basics.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Technical Rounds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Technical Rounds/README.md -------------------------------------------------------------------------------- /Technical Rounds/React Js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Technical Rounds/React Js.md -------------------------------------------------------------------------------- /Technical Rounds/SQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Technical Rounds/SQL.md -------------------------------------------------------------------------------- /Technical Rounds/Sql Queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/Technical Rounds/Sql Queries.md -------------------------------------------------------------------------------- /Technical Rounds/Vue Js.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tempCodeRunnerFile.js: -------------------------------------------------------------------------------- 1 | student.sub = 'C++'; -------------------------------------------------------------------------------- /test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaafivikrant/One-day-Before-Interview/HEAD/test.cpp --------------------------------------------------------------------------------