Skip to content

Commit bb8ce7d

Browse files
committed
Updated readme
1 parent cc38c48 commit bb8ce7d

File tree

1 file changed

+74
-74
lines changed

1 file changed

+74
-74
lines changed

README.md

Lines changed: 74 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
> ["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)
1111

1212
##
13-
* [Graph Theory I](#graph-theory-i)
1413
* [SQL I](#sql-i)
1514
* [Level 1](#level-1)
1615
* [Level 2](#level-2)
@@ -25,79 +24,7 @@
2524
* [Dynamic Programming I](#dynamic-programming-i)
2625
* [Programming Skills I](#programming-skills-i)
2726
* [Programming Skills II](#programming-skills-ii)
28-
29-
### Graph Theory I
30-
31-
#### Day 1 Matrix Related Problems
32-
33-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
34-
|-|-|-|-|-|-|-
35-
| 0200 |Number of Islands| [Java](src/main/java/g0101_0200/s0200_number_of_islands) [Kotlin](src/main/kotlin/g0101_0200/s0200_number_of_islands) [TypeScript](src/main/ts/g0101_0200/s0200_number_of_islands) [Scala](src/main/scala/g0101_0200/s0200_number_of_islands) [Ruby](src/main/ruby/g0101_0200/s0200_number_of_islands) [PHP](src/main/php/g0101_0200/s0200_number_of_islands) [C#](src/main/csharp/g0101_0200/s0200_number_of_islands) [Go](src/main/go/g0101_0200/s0200_number_of_islands) [Cpp](src/main/cpp/g0101_0200/s0200_number_of_islands) [Python](src/main/python/g0101_0200/s0200_number_of_islands) [Swift](src/main/swift/g0101_0200/s0200_number_of_islands) [Elixir](src/main/elixir/g0101_0200/s0200_number_of_islands) [Rust](src/main/rust/g0101_0200/s0200_number_of_islands) [Dart](src/main/dart/g0101_0200/s0200_number_of_islands) [C](src/main/c/g0101_0200/s0200_number_of_islands) [JavaScript](src/main/js/g0101_0200/s0200_number_of_islands) [Erlang](src/main/erlang/g0101_0200/s0200_number_of_islands) [Racket](src/main/racket/g0101_0200/s0200_number_of_islands)| 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) | 3 | 87.24
36-
37-
#### Day 2 Matrix Related Problems
38-
39-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
40-
|-|-|-|-|-|-|-
41-
42-
#### Day 3 Matrix Related Problems
43-
44-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
45-
|-|-|-|-|-|-|-
46-
47-
#### Day 4 Matrix Related Problems
48-
49-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
50-
|-|-|-|-|-|-|-
51-
52-
#### Day 5 Matrix Related Problems
53-
54-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
55-
|-|-|-|-|-|-|-
56-
57-
#### Day 6 Matrix Related Problems
58-
59-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
60-
|-|-|-|-|-|-|-
61-
62-
#### Day 7 Standard Traversal
63-
64-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
65-
|-|-|-|-|-|-|-
66-
67-
#### Day 8 Standard Traversal
68-
69-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
70-
|-|-|-|-|-|-|-
71-
72-
#### Day 9 Standard Traversal
73-
74-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
75-
|-|-|-|-|-|-|-
76-
77-
#### Day 10 Standard Traversal
78-
79-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
80-
|-|-|-|-|-|-|-
81-
82-
#### Day 11 Breadth First Search
83-
84-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
85-
|-|-|-|-|-|-|-
86-
87-
#### Day 12 Breadth First Search
88-
89-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
90-
|-|-|-|-|-|-|-
91-
92-
#### Day 13 Graph Theory
93-
94-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
95-
|-|-|-|-|-|-|-
96-
97-
#### Day 14 Graph Theory
98-
99-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
100-
|-|-|-|-|-|-|-
27+
* [Graph Theory I](#graph-theory-i)
10128

10229
### SQL I
10330

@@ -1591,6 +1518,79 @@
15911518
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
15921519
|-|-|-|-|-|-|-
15931520

1521+
### Graph Theory I
1522+
1523+
#### Day 1 Matrix Related Problems
1524+
1525+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1526+
|-|-|-|-|-|-|-
1527+
| 0200 |Number of Islands| [Java](src/main/java/g0101_0200/s0200_number_of_islands) [Kotlin](src/main/kotlin/g0101_0200/s0200_number_of_islands) [TypeScript](src/main/ts/g0101_0200/s0200_number_of_islands) [Scala](src/main/scala/g0101_0200/s0200_number_of_islands) [Ruby](src/main/ruby/g0101_0200/s0200_number_of_islands) [PHP](src/main/php/g0101_0200/s0200_number_of_islands) [C#](src/main/csharp/g0101_0200/s0200_number_of_islands) [Go](src/main/go/g0101_0200/s0200_number_of_islands) [Cpp](src/main/cpp/g0101_0200/s0200_number_of_islands) [Python](src/main/python/g0101_0200/s0200_number_of_islands) [Swift](src/main/swift/g0101_0200/s0200_number_of_islands) [Elixir](src/main/elixir/g0101_0200/s0200_number_of_islands) [Rust](src/main/rust/g0101_0200/s0200_number_of_islands) [Dart](src/main/dart/g0101_0200/s0200_number_of_islands) [C](src/main/c/g0101_0200/s0200_number_of_islands) [JavaScript](src/main/js/g0101_0200/s0200_number_of_islands) [Erlang](src/main/erlang/g0101_0200/s0200_number_of_islands) [Racket](src/main/racket/g0101_0200/s0200_number_of_islands)| 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) | 3 | 87.24
1528+
1529+
#### Day 2 Matrix Related Problems
1530+
1531+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1532+
|-|-|-|-|-|-|-
1533+
1534+
#### Day 3 Matrix Related Problems
1535+
1536+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1537+
|-|-|-|-|-|-|-
1538+
1539+
#### Day 4 Matrix Related Problems
1540+
1541+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1542+
|-|-|-|-|-|-|-
1543+
1544+
#### Day 5 Matrix Related Problems
1545+
1546+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1547+
|-|-|-|-|-|-|-
1548+
1549+
#### Day 6 Matrix Related Problems
1550+
1551+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1552+
|-|-|-|-|-|-|-
1553+
1554+
#### Day 7 Standard Traversal
1555+
1556+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1557+
|-|-|-|-|-|-|-
1558+
1559+
#### Day 8 Standard Traversal
1560+
1561+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1562+
|-|-|-|-|-|-|-
1563+
1564+
#### Day 9 Standard Traversal
1565+
1566+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1567+
|-|-|-|-|-|-|-
1568+
1569+
#### Day 10 Standard Traversal
1570+
1571+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1572+
|-|-|-|-|-|-|-
1573+
1574+
#### Day 11 Breadth First Search
1575+
1576+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1577+
|-|-|-|-|-|-|-
1578+
1579+
#### Day 12 Breadth First Search
1580+
1581+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1582+
|-|-|-|-|-|-|-
1583+
1584+
#### Day 13 Graph Theory
1585+
1586+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1587+
|-|-|-|-|-|-|-
1588+
1589+
#### Day 14 Graph Theory
1590+
1591+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1592+
|-|-|-|-|-|-|-
1593+
15941594
## Algorithms
15951595

15961596
| # | Title | Language | Difficulty | Tag | Time, ms | Time, %

0 commit comments

Comments
 (0)