Skip to content

Commit f25736f

Browse files
authored
Update README.md
1 parent cbb309e commit f25736f

File tree

1 file changed

+5
-45
lines changed

1 file changed

+5
-45
lines changed

README.md

Lines changed: 5 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -10,51 +10,11 @@ This is a repository of solutions to all problems I've solved on InterviewBit. I
1010

1111
# Topics
1212

13-
* [Time Complexity]
13+
* [Time Complexity](#)
1414
* [Arrays](https://github.com/rahulcode22/Data-structures/tree/master/Arrays)
15-
* [Math](https://github.com/Alex-Keyes/InterviewBit#Math)
16-
* [Binary Search](https://github.com/Alex-Keyes/InterviewBit#Binary+Search)
17-
* [Linked Lists](https://github.com/Alex-Keyes/InterviewBit#Linked+Lists)
18-
* [Stack and Queue](https://github.com/Alex-Keyes/InterviewBit#Stack+and+Queue)
15+
* [Math](https://github.com/rahulcode22/Data-structures/tree/master/Math)
16+
* [Binary Search](https://github.com/rahulcode22/Data-structures/tree/master/Binary-Search)
17+
* [String](https://github.com/rahulcode22/Data-structures/tree/master/String)
18+
* [Stack and Queue](#)
1919

20-
# Problem Lists
21-
## [Time Complexity](https://www.interviewbit.com/courses/programming/topics/time-complexity/)
22-
[Answers](https://github.com/Alex-Keyes/InterviewBit/blob/master/timeComplexity.md)
2320

24-
<!-- my birthday, where we are going skiing - vail and what's happening this weekend -->
25-
26-
## [Arrays](https://www.interviewbit.com/courses/programming/topics/arrays)
27-
| SubTopic | Title | Solution | Notes |
28-
| --- | --- | --- | --- |
29-
| Simulation Array | [Pascal Triangle Rows](https://www.interviewbit.com/problems/pascal-triangle-rows/) | [cpp](./C++/generatePascal.cpp) [python](./Python/generatePascal.py) |
30-
| Array math | [Min Steps in Infinite Grid](https://www.interviewbit.com/problems/min-steps-in-infinite-grid/) | [C++](/C++/coverPoints.cpp) | Simpler Than I originally thought. |
31-
| Array math | [Max Sum Contiguous Subarray](https://www.interviewbit.com/problems/max-sum-contiguous-subarray/) | [C++](/C++/maxSubArray.cpp) | |
32-
| Array math | [Add One To Number](https://www.interviewbit.com/problems/add-one-to-number/) | [Python](/Python/addone.py) | |
33-
| Array math | [Repeat and Missing Number Array](https://www.interviewbit.com/problems/repeat-and-missing-number-array/) | [Python](/Python/repeatedNumber.py) | |
34-
| Array math | [Flip](https://www.interviewbit.com/problems/flip/) | [Python](/Python/flip.py) | |
35-
| Simulation array | [Max Non Negative SubArray](https://www.interviewbit.com/problems/max-non-negative-subarray/) | [C++](/C++/maxSet.cpp) [Python](file:Python/maxSet.py) | |
36-
| Simulation array | [Kth Row of Pascal's Triangle](https://www.interviewbit.com/problems/kth-row-of-pascals-triangle/) | [Python](/Python/getRow.py) | |
37-
| Simulation array | [Pascal Triangle Rows](https://www.interviewbit.com/problems/pascal-triangle-rows/) | [Python](/Python/generatePascal.py) | |
38-
| Simulation array | [Spiral Order Matrix II](https://www.interviewbit.com/problems/spiral-order-matrix-ii/) | [C++](/C++/generateMatrix.cpp) [Python](/Python/generateMatrix.py) | |
39-
| Simulation array | [Anti Diagonals](https://www.interviewbit.com/problems/anti-diagonals/) | [C++](/C++/diagonal.cpp) | |
40-
| Arrangement | [Rotate Matrix](https://www.interviewbit.com/problems/rotate-matrix/) | [C++](/C++/rotate.cpp) | |
41-
| Arrangement | [Largest Number](https://www.interviewbit.com/problems/largest-number/) | [C++](C++/largestNum.cpp) | |
42-
| Arrangement | [Next Permutation](https://www.interviewbit.com/problems/next-permutation/) | [Python](/Python/nextPermutation.py) | |
43-
| Bucketing or sorting | Hotel Bookings Possible | | |
44-
| Bucketing or sorting | [Wave Array](https://www.interviewbit.com/problems/wave-array/) | [C++](/C++/wave.cpp) | |
45-
| Bucketing or sorting | [Largest Number]([https://www.interviewbit.com/problems/largest-number/) | [C++](/C++/largestNum.cpp) | |
46-
| Bucketing or sorting | Max Distance | | |
47-
| Bucketing or sorting | Maximum Consecutive Gap | | |
48-
| Bucketing or sorting | [Find Duplicate in Array](https://www.interviewbit.com/problems/find-duplicate-in-array/) | [C++](/C++/repeatedNum.cpp) | |
49-
| Value ranges | [Merge Intervals](https://www.interviewbit.com/problems/merge-intervals/) | [C++](/C++/mergeIntervals.cpp) | |
50-
| Value ranges | Merge Overlapping Intervals | | |
51-
| Space recycle | [Set Matrix Zeros](https://www.interviewbit.com/problems/set-matrix-zeros/) | [C++](/C++/setMatrixZeros.cpp) | |
52-
| Space recycle | First Missing Integer | | |
53-
| Missing / repeated number | First Missing Integer | | |
54-
| Missing / repeated number | Repeat and Missing Number Array | | |
55-
| Missing / repeated number | Find Duplicate in Array | | |
56-
| Missing / repeated number | N/3 Repeat Number | | |
57-
## [Math](http://interviewbit.com/courses/programming/topics/math/)
58-
## [Binary Search](https://www.interviewbit.com/courses/programming/topics/binary-search/)
59-
## [Stack and Queue](https://www.interviewbit.com/courses/programming/topics/stacks-and-queues/)
60-
## [Linked Lists](https://www.interviewbit.com/courses/programming/topics/linked-lists/)

0 commit comments

Comments
 (0)