-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
22 lines (19 loc) · 1 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# https://en.wikipedia.org/wiki/.DS_Store
.DS_Store
Rough.py
# Will complete problems with topics that I haven't learnt after learning:
SDE Sheet/01) Arrays/003.1) Permutations.py/ (Backtracking)
SDE Sheet/01) Arrays/003.2) Permutations II.py/ (Backtracking)
SDE Sheet/01) Arrays/005.1) Wiggle Sort II.py/ (Maths)
SDE Sheet/01) Arrays/006.2) Best Time to Buy and Sell Stock with Cooldown.py/ (DP)
SDE Sheet/01) Arrays/014.2) Super Pow.py/ (Maths)
SDE Sheet/01) Arrays/017.1) Unique Paths II.py/ (DP)
SDE Sheet/01) Arrays/017.2) Minimum Path Sum.py/ (DP)
SDE Sheet/01) Arrays/017.4) Minimum Path Cost in a Grid.py/ (DP)
SDE Sheet/02) Linked List/027.1) Sort List.py/ (Merge Sort on LL)
SDE Sheet/02) Linked List/029.3) Sum of Two Integers.py/ (Bit Manipulation)
SDE Sheet/02) Linked List/038.1) Clone Graph.py/ (Graph)
# Will do problems with "Hard" difficulty in the end:
SDE Sheet/01) Arrays/018) Reverse Pairs.py
SDE Sheet/01) Arrays/040) Trapping Rain Water.py
SDE Sheet/02) Linked List/033) Reverse Nodes in k-Group.py