|
6 | 6 | [](https://github.com/javadev/LeetCode-in-All/fork)
|
7 | 7 | > ["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)
|
8 | 8 |
|
9 |
| -* [Programming Skills I](#programming-skills-i) |
10 | 9 | * [Programming Skills II](#programming-skills-ii)
|
11 | 10 | * [Graph Theory I](#graph-theory-i)
|
12 | 11 | * [SQL I](#sql-i)
|
|
21 | 20 | * [Binary Search I](#binary-search-i)
|
22 | 21 | * [Binary Search II](#binary-search-ii)
|
23 | 22 | * [Dynamic Programming I](#dynamic-programming-i)
|
24 |
| - |
25 |
| -### Programming Skills I |
26 |
| - |
27 |
| -#### Day 1 Basic Data Type |
28 |
| - |
29 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
30 |
| -|-|-|-|-|-|-|- |
31 |
| - |
32 |
| -#### Day 2 Operator |
33 |
| - |
34 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
35 |
| -|-|-|-|-|-|-|- |
36 |
| - |
37 |
| -#### Day 3 Conditional Statements |
38 |
| - |
39 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
40 |
| -|-|-|-|-|-|-|- |
41 |
| - |
42 |
| -#### Day 4 Loop |
43 |
| - |
44 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
45 |
| -|-|-|-|-|-|-|- |
46 |
| - |
47 |
| -#### Day 5 Function |
48 |
| - |
49 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
50 |
| -|-|-|-|-|-|-|- |
51 |
| - |
52 |
| -#### Day 6 Array |
53 |
| - |
54 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
55 |
| -|-|-|-|-|-|-|- |
56 |
| -| 0283 |Move Zeroes| [Java](src/main/java/g0201_0300/s0283_move_zeroes) [Kotlin](src/main/kotlin/g0201_0300/s0283_move_zeroes) [TypeScript](src/main/ts/g0201_0300/s0283_move_zeroes) [Scala](src/main/scala/g0201_0300/s0283_move_zeroes) [Ruby](src/main/ruby/g0201_0300/s0283_move_zeroes) [PHP](src/main/php/g0201_0300/s0283_move_zeroes) [C#](src/main/csharp/g0201_0300/s0283_move_zeroes) [Go](src/main/go/g0201_0300/s0283_move_zeroes) [Cpp](src/main/cpp/g0201_0300/s0283_move_zeroes) [Python](src/main/python/g0201_0300/s0283_move_zeroes) [Swift](src/main/swift/g0201_0300/s0283_move_zeroes) [Elixir](src/main/elixir/g0201_0300/s0283_move_zeroes) [Rust](src/main/rust/g0201_0300/s0283_move_zeroes) [Dart](src/main/dart/g0201_0300/s0283_move_zeroes) [C](src/main/c/g0201_0300/s0283_move_zeroes) [JavaScript](src/main/js/g0201_0300/s0283_move_zeroes) [Erlang](src/main/erlang/g0201_0300/s0283_move_zeroes) [Racket](src/main/racket/g0201_0300/s0283_move_zeroes)| Easy | Top_100_Liked_Questions, Array, Two_Pointers, LeetCode_75_Two_Pointers, Big_O_Time_O(n)_Space_O(1) | 2 | 83.99 |
57 |
| - |
58 |
| -#### Day 7 Array |
59 |
| - |
60 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
61 |
| -|-|-|-|-|-|-|- |
62 |
| - |
63 |
| -#### Day 8 String |
64 |
| - |
65 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
66 |
| -|-|-|-|-|-|-|- |
67 |
| - |
68 |
| -#### Day 9 String |
69 |
| - |
70 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
71 |
| -|-|-|-|-|-|-|- |
72 |
| - |
73 |
| -#### Day 10 Linked List and Tree |
74 |
| - |
75 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
76 |
| -|-|-|-|-|-|-|- |
77 |
| -| 0104 |Maximum Depth of Binary Tree| [Java](src/main/java/g0101_0200/s0104_maximum_depth_of_binary_tree) [Kotlin](src/main/kotlin/g0101_0200/s0104_maximum_depth_of_binary_tree) [TypeScript](src/main/ts/g0101_0200/s0104_maximum_depth_of_binary_tree) [Scala](src/main/scala/g0101_0200/s0104_maximum_depth_of_binary_tree) [Ruby](src/main/ruby/g0101_0200/s0104_maximum_depth_of_binary_tree) [PHP](src/main/php/g0101_0200/s0104_maximum_depth_of_binary_tree) [C#](src/main/csharp/g0101_0200/s0104_maximum_depth_of_binary_tree) [Go](src/main/go/g0101_0200/s0104_maximum_depth_of_binary_tree) [Cpp](src/main/cpp/g0101_0200/s0104_maximum_depth_of_binary_tree) [Python](src/main/python/g0101_0200/s0104_maximum_depth_of_binary_tree) [Swift](src/main/swift/g0101_0200/s0104_maximum_depth_of_binary_tree) [Elixir](src/main/elixir/g0101_0200/s0104_maximum_depth_of_binary_tree) [Rust](src/main/rust/g0101_0200/s0104_maximum_depth_of_binary_tree) [Dart](src/main/dart/g0101_0200/s0104_maximum_depth_of_binary_tree) [C](src/main/c/g0101_0200/s0104_maximum_depth_of_binary_tree) [JavaScript](src/main/js/g0101_0200/s0104_maximum_depth_of_binary_tree) [Erlang](src/main/erlang/g0101_0200/s0104_maximum_depth_of_binary_tree) [Racket](src/main/racket/g0101_0200/s0104_maximum_depth_of_binary_tree)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree, LeetCode_75_Binary_Tree/DFS, Big_O_Time_O(N)_Space_O(H) | 0 | 100.00 |
78 |
| - |
79 |
| -#### Day 11 Containers and Libraries |
80 |
| - |
81 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
82 |
| -|-|-|-|-|-|-|- |
83 |
| - |
84 |
| -#### Day 12 Class and Object |
85 |
| - |
86 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
87 |
| -|-|-|-|-|-|-|- |
| 23 | +* [Programming Skills I](#programming-skills-i) |
88 | 24 |
|
89 | 25 | ### Programming Skills II
|
90 | 26 |
|
|
1587 | 1523 | | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
|
1588 | 1524 | |-|-|-|-|-|-|-
|
1589 | 1525 |
|
| 1526 | +### Programming Skills I |
| 1527 | + |
| 1528 | +#### Day 1 Basic Data Type |
| 1529 | + |
| 1530 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1531 | +|-|-|-|-|-|-|- |
| 1532 | + |
| 1533 | +#### Day 2 Operator |
| 1534 | + |
| 1535 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1536 | +|-|-|-|-|-|-|- |
| 1537 | + |
| 1538 | +#### Day 3 Conditional Statements |
| 1539 | + |
| 1540 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1541 | +|-|-|-|-|-|-|- |
| 1542 | + |
| 1543 | +#### Day 4 Loop |
| 1544 | + |
| 1545 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1546 | +|-|-|-|-|-|-|- |
| 1547 | + |
| 1548 | +#### Day 5 Function |
| 1549 | + |
| 1550 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1551 | +|-|-|-|-|-|-|- |
| 1552 | + |
| 1553 | +#### Day 6 Array |
| 1554 | + |
| 1555 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1556 | +|-|-|-|-|-|-|- |
| 1557 | +| 0283 |Move Zeroes| [Java](src/main/java/g0201_0300/s0283_move_zeroes) [Kotlin](src/main/kotlin/g0201_0300/s0283_move_zeroes) [TypeScript](src/main/ts/g0201_0300/s0283_move_zeroes) [Scala](src/main/scala/g0201_0300/s0283_move_zeroes) [Ruby](src/main/ruby/g0201_0300/s0283_move_zeroes) [PHP](src/main/php/g0201_0300/s0283_move_zeroes) [C#](src/main/csharp/g0201_0300/s0283_move_zeroes) [Go](src/main/go/g0201_0300/s0283_move_zeroes) [Cpp](src/main/cpp/g0201_0300/s0283_move_zeroes) [Python](src/main/python/g0201_0300/s0283_move_zeroes) [Swift](src/main/swift/g0201_0300/s0283_move_zeroes) [Elixir](src/main/elixir/g0201_0300/s0283_move_zeroes) [Rust](src/main/rust/g0201_0300/s0283_move_zeroes) [Dart](src/main/dart/g0201_0300/s0283_move_zeroes) [C](src/main/c/g0201_0300/s0283_move_zeroes) [JavaScript](src/main/js/g0201_0300/s0283_move_zeroes) [Erlang](src/main/erlang/g0201_0300/s0283_move_zeroes) [Racket](src/main/racket/g0201_0300/s0283_move_zeroes)| Easy | Top_100_Liked_Questions, Array, Two_Pointers, LeetCode_75_Two_Pointers, Big_O_Time_O(n)_Space_O(1) | 2 | 83.99 |
| 1558 | + |
| 1559 | +#### Day 7 Array |
| 1560 | + |
| 1561 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1562 | +|-|-|-|-|-|-|- |
| 1563 | + |
| 1564 | +#### Day 8 String |
| 1565 | + |
| 1566 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1567 | +|-|-|-|-|-|-|- |
| 1568 | + |
| 1569 | +#### Day 9 String |
| 1570 | + |
| 1571 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1572 | +|-|-|-|-|-|-|- |
| 1573 | + |
| 1574 | +#### Day 10 Linked List and Tree |
| 1575 | + |
| 1576 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1577 | +|-|-|-|-|-|-|- |
| 1578 | +| 0104 |Maximum Depth of Binary Tree| [Java](src/main/java/g0101_0200/s0104_maximum_depth_of_binary_tree) [Kotlin](src/main/kotlin/g0101_0200/s0104_maximum_depth_of_binary_tree) [TypeScript](src/main/ts/g0101_0200/s0104_maximum_depth_of_binary_tree) [Scala](src/main/scala/g0101_0200/s0104_maximum_depth_of_binary_tree) [Ruby](src/main/ruby/g0101_0200/s0104_maximum_depth_of_binary_tree) [PHP](src/main/php/g0101_0200/s0104_maximum_depth_of_binary_tree) [C#](src/main/csharp/g0101_0200/s0104_maximum_depth_of_binary_tree) [Go](src/main/go/g0101_0200/s0104_maximum_depth_of_binary_tree) [Cpp](src/main/cpp/g0101_0200/s0104_maximum_depth_of_binary_tree) [Python](src/main/python/g0101_0200/s0104_maximum_depth_of_binary_tree) [Swift](src/main/swift/g0101_0200/s0104_maximum_depth_of_binary_tree) [Elixir](src/main/elixir/g0101_0200/s0104_maximum_depth_of_binary_tree) [Rust](src/main/rust/g0101_0200/s0104_maximum_depth_of_binary_tree) [Dart](src/main/dart/g0101_0200/s0104_maximum_depth_of_binary_tree) [C](src/main/c/g0101_0200/s0104_maximum_depth_of_binary_tree) [JavaScript](src/main/js/g0101_0200/s0104_maximum_depth_of_binary_tree) [Erlang](src/main/erlang/g0101_0200/s0104_maximum_depth_of_binary_tree) [Racket](src/main/racket/g0101_0200/s0104_maximum_depth_of_binary_tree)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree, LeetCode_75_Binary_Tree/DFS, Big_O_Time_O(N)_Space_O(H) | 0 | 100.00 |
| 1579 | + |
| 1580 | +#### Day 11 Containers and Libraries |
| 1581 | + |
| 1582 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1583 | +|-|-|-|-|-|-|- |
| 1584 | + |
| 1585 | +#### Day 12 Class and Object |
| 1586 | + |
| 1587 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1588 | +|-|-|-|-|-|-|- |
| 1589 | + |
1590 | 1590 | ## Algorithms
|
1591 | 1591 |
|
1592 | 1592 | | # | Title | Difficulty | Tag | Time, ms | Time, %
|
|
0 commit comments