Skip to content

Commit 06b06c4

Browse files
authored
Updated readme
1 parent b2c1c1a commit 06b06c4

File tree

1 file changed

+76
-76
lines changed

1 file changed

+76
-76
lines changed

README.md

Lines changed: 76 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ Python-based LeetCode algorithm problem solutions, regularly updated.
99
> ["For coding interview preparation, LeetCode is one of the best online resource providing a rich library of more than 300 real coding interview questions for you to practice from using one of the 7 supported languages - C, C++, Java, Python, C#, JavaScript, Ruby."](https://www.quora.com/How-effective-is-Leetcode-for-preparing-for-technical-interviews)
1010
1111
##
12-
* [Graph Theory I](#graph-theory-i)
1312
* [SQL I](#sql-i)
1413
* [Level 1](#level-1)
1514
* [Level 2](#level-2)
@@ -24,81 +23,7 @@ Python-based LeetCode algorithm problem solutions, regularly updated.
2423
* [Dynamic Programming I](#dynamic-programming-i)
2524
* [Programming Skills I](#programming-skills-i)
2625
* [Programming Skills II](#programming-skills-ii)
27-
28-
### Graph Theory I
29-
30-
#### Day 1 Matrix Related Problems
31-
32-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
33-
|-|-|-|-|-|-
34-
| 0200 |[Number of Islands](src/main/python/g0101_0200/s0200_number_of_islands/Solution0200.py)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Depth_First_Search, Breadth_First_Search, Matrix, Union_Find, Big_O_Time_O(M\*N)_Space_O(M\*N) | 234 | 82.73
35-
36-
#### Day 2 Matrix Related Problems
37-
38-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
39-
|-|-|-|-|-|-
40-
41-
#### Day 3 Matrix Related Problems
42-
43-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
44-
|-|-|-|-|-|-
45-
46-
#### Day 4 Matrix Related Problems
47-
48-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
49-
|-|-|-|-|-|-
50-
51-
#### Day 5 Matrix Related Problems
52-
53-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
54-
|-|-|-|-|-|-
55-
56-
#### Day 6 Matrix Related Problems
57-
58-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
59-
|-|-|-|-|-|-
60-
61-
#### Day 7 Standard Traversal
62-
63-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
64-
|-|-|-|-|-|-
65-
66-
#### Day 8 Standard Traversal
67-
68-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
69-
|-|-|-|-|-|-
70-
71-
#### Day 9 Standard Traversal
72-
73-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
74-
|-|-|-|-|-|-
75-
76-
#### Day 10 Standard Traversal
77-
78-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
79-
|-|-|-|-|-|-
80-
81-
#### Day 11 Breadth First Search
82-
83-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
84-
|-|-|-|-|-|-
85-
86-
#### Day 12 Breadth First Search
87-
88-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
89-
|-|-|-|-|-|-
90-
| 0433 |[Minimum Genetic Mutation](src/main/python/g0401_0500/s0433_minimum_genetic_mutation/Solution0433.py)| Medium | String, Hash_Table, Breadth_First_Search | 0 | 100.00
91-
| 0127 |[Word Ladder](src/main/python/g0101_0200/s0127_word_ladder/Solution0127.py)| Hard | Top_Interview_Questions, String, Hash_Table, Breadth_First_Search | 21 | 99.65
92-
93-
#### Day 13 Graph Theory
94-
95-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
96-
|-|-|-|-|-|-
97-
98-
#### Day 14 Graph Theory
99-
100-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
101-
|-|-|-|-|-|-
26+
* [Graph Theory I](#graph-theory-i)
10227

10328
### SQL I
10429

@@ -1753,6 +1678,81 @@ Python-based LeetCode algorithm problem solutions, regularly updated.
17531678
|-|-|-|-|-|-
17541679
| 0380 |[Insert Delete GetRandom O(1)](src/main/python/g0301_0400/s0380_insert_delete_getrandom_o1/RandomizedSet0380.py)| Medium | Array, Hash_Table, Math, Design, Randomized | 90 | 96.69
17551680

1681+
### Graph Theory I
1682+
1683+
#### Day 1 Matrix Related Problems
1684+
1685+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1686+
|-|-|-|-|-|-
1687+
| 0200 |[Number of Islands](src/main/python/g0101_0200/s0200_number_of_islands/Solution0200.py)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Depth_First_Search, Breadth_First_Search, Matrix, Union_Find, Big_O_Time_O(M\*N)_Space_O(M\*N) | 234 | 82.73
1688+
1689+
#### Day 2 Matrix Related Problems
1690+
1691+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1692+
|-|-|-|-|-|-
1693+
1694+
#### Day 3 Matrix Related Problems
1695+
1696+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1697+
|-|-|-|-|-|-
1698+
1699+
#### Day 4 Matrix Related Problems
1700+
1701+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1702+
|-|-|-|-|-|-
1703+
1704+
#### Day 5 Matrix Related Problems
1705+
1706+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1707+
|-|-|-|-|-|-
1708+
1709+
#### Day 6 Matrix Related Problems
1710+
1711+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1712+
|-|-|-|-|-|-
1713+
1714+
#### Day 7 Standard Traversal
1715+
1716+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1717+
|-|-|-|-|-|-
1718+
1719+
#### Day 8 Standard Traversal
1720+
1721+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1722+
|-|-|-|-|-|-
1723+
1724+
#### Day 9 Standard Traversal
1725+
1726+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1727+
|-|-|-|-|-|-
1728+
1729+
#### Day 10 Standard Traversal
1730+
1731+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1732+
|-|-|-|-|-|-
1733+
1734+
#### Day 11 Breadth First Search
1735+
1736+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1737+
|-|-|-|-|-|-
1738+
1739+
#### Day 12 Breadth First Search
1740+
1741+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1742+
|-|-|-|-|-|-
1743+
| 0433 |[Minimum Genetic Mutation](src/main/python/g0401_0500/s0433_minimum_genetic_mutation/Solution0433.py)| Medium | String, Hash_Table, Breadth_First_Search | 0 | 100.00
1744+
| 0127 |[Word Ladder](src/main/python/g0101_0200/s0127_word_ladder/Solution0127.py)| Hard | Top_Interview_Questions, String, Hash_Table, Breadth_First_Search | 21 | 99.65
1745+
1746+
#### Day 13 Graph Theory
1747+
1748+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1749+
|-|-|-|-|-|-
1750+
1751+
#### Day 14 Graph Theory
1752+
1753+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1754+
|-|-|-|-|-|-
1755+
17561756
## Algorithms
17571757

17581758
| # | Title | Difficulty | Tag | Time, ms | Time, %

0 commit comments

Comments
 (0)