8000 Updated readme · pytdev/LeetCode-in-Php@84e09dd · GitHub
[go: up one dir, main page]

Skip to content

Commit 84e09dd

Browse files
authored
Updated readme
1 parent 0b0e1dc commit 84e09dd

File tree

1 file changed

+68
-68
lines changed

1 file changed

+68
-68
lines changed

README.md

Lines changed: 68 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ Php-based LeetCode algorithm problem solutions, regularly updated.
1111
> ["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)
1212
1313
##
14-
* [Binary Search I](#binary-search-i)
1514
* [Binary Search II](#binary-search-ii)
1615
* [Dynamic Programming I](#dynamic-programming-i)
1716
* [Programming Skills I](#programming-skills-i)
@@ -25,73 +24,7 @@ Php-based LeetCode algorithm problem solutions, regularly updated.
2524
* [Data Structure II](#data-structure-ii)
2625
* [Algorithm I](#algorithm-i)
2726
* [Algorithm II](#algorithm-ii)
28-
29-
### Binary Search I
30-
31-
#### Day 1
32-
33-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
34-
|-|-|-|-|-|-
35-
36-
#### Day 2
37-
38-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
39-
|-|-|-|-|-|-
40-
| 0035 |[Search Insert Position](src/main/php/g0001_0100/s0035_search_insert_position/Solution.php)| Easy | Top_100_Liked_Questions, Array, Binary_Search, Big_O_Time_O(log_n)_Space_O(1) | 8 | 85.09
41-
42-
#### Day 3
43-
44-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
45-
|-|-|-|-|-|-
46-
47-
#### Day 4
48-
49-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
50-
|-|-|-|-|-|-
51-
52-
#### Day 5
53-
54-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
55-
|-|-|-|-|-|-
56-
| 0034 |[Find First and Last Position of Element in Sorted Array](src/main/php/g0001_0100/s0034_find_first_and_last_position_of_element_in_sorted_array/Solution.php)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Binary_Search, Big_O_Time_O(log_n)_Space_O(1) | 19 | 81.01
57-
58-
#### Day 6
59-
60-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
61-
|-|-|-|-|-|-
62-
63-
#### Day 7
64-
65-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
66-
|-|-|-|-|-|-
67-
68-
#### Day 8
69-
70-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
71-
|-|-|-|-|-|-
72-
| 0074 |[Search a 2D Matrix](src/main/php/g0001_0100/s0074_search_a_2d_matrix/Solution.php)| Medium | Top_100_Liked_Questions, Array, Binary_Search, Matrix, Big_O_Time_O(endRow+endCol)_Space_O(1) | 9 | 68.18
73-
74-
#### Day 9
75-
76-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
77-
|-|-|-|-|-|-
78-
79-
#### Day 10
80-
81-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
82-
|-|-|-|-|-|-
83-
84-
#### Day 11
85-
86-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
87-
|-|-|-|-|-|-
88-
| 0033 |[Search in Rotated Sorted Array](src/main/php/g0001_0100/s0033_search_in_rotated_sorted_array/Solution.php)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Binary_Search, Big_O_Time_O(log_n)_Space_O(1) | 7 | 83.17
89-
90-
#### Day 12
91-
92-
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
93-
|-|-|-|-|-|-
94-
| 0153 |[Find Minimum in Rotated Sorted Array](src/main/php/g0101_0200/s0153_find_minimum_in_rotated_sorted_array/Solution.php)| Medium | Top_100_Liked_Questions, Array, Binary_Search, Big_O_Time_O(log_N)_Space_O(log_N) | 9 | 73.47
27+
* [Binary Search I](#binary-search-i)
9528

9629
### Binary Search II
9730

@@ -1407,6 +1340,73 @@ Php-based LeetCode algorithm problem solutions, regularly updated.
14071340
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
14081341
|-|-|-|-|-|-
14091342

1343+
### Binary Search I
1344+
1345+
#### Day 1
1346+
1347+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1348+
|-|-|-|-|-|-
1349+
1350+
#### Day 2
1351+
1352+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1353+
|-|-|-|-|-|-
1354+
| 0035 |[Search Insert Position](src/main/php/g0001_0100/s0035_search_insert_position/Solution.php)| Easy | Top_100_Liked_Questions, Array, Binary_Search, Big_O_Time_O(log_n)_Space_O(1) | 8 | 85.09
1355+
1356+
#### Day 3
1357+
1358+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1359+
|-|-|-|-|-|-
1360+
1361+
#### Day 4
1362+
1363+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1364+
|-|-|-|-|-|-
1365+
1366+
#### Day 5
1367+
1368+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1369+
|-|-|-|-|-|-
1370+
| 0034 |[Find First and Last Position of Element in Sorted Array](src/main/php/g0001_0100/s0034_find_first_and_last_position_of_element_in_sorted_array/Solution.php)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Binary_Search, Big_O_Time_O(log_n)_Space_O(1) | 19 | 81.01
1371+
1372+
#### Day 6
1373+
1374+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1375+
|-|-|-|-|-|-
1376+
1377+
#### Day 7
1378+
1379+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1380+
|-|-|-|-|-|-
1381+
1382+
#### Day 8
1383+
1384+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1385+
|-|-|-|-|-|-
1386+
| 0074 |[Search a 2D Matrix](src/main/php/g0001_0100/s0074_search_a_2d_matrix/Solution.php)| Medium | Top_100_Liked_Questions, Array, Binary_Search, Matrix, Big_O_Time_O(endRow+endCol)_Space_O(1) | 9 | 68.18
1387+
1388+
#### Day 9
1389+
1390+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1391+
|-|-|-|-|-|-
1392+
1393+
#### Day 10
1394+
1395+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1396+
|-|-|-|-|-|-
1397+
1398+
#### Day 11
1399+
1400+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1401+
|-|-|-|-|-|-
1402+
| 0033 |[Search in Rotated Sorted Array](src/main/php/g0001_0100/s0033_search_in_rotated_sorted_array/Solution.php)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Binary_Search, Big_O_Time_O(log_n)_Space_O(1) | 7 | 83.17
1403+
1404+
#### Day 12
1405+
1406+
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1407+
|-|-|-|-|-|-
1408+
| 0153 |[Find Minimum in Rotated Sorted Array](src/main/php/g0101_0200/s0153_find_minimum_in_rotated_sorted_array/Solution.php)| Medium | Top_100_Liked_Questions, Array, Binary_Search, Big_O_Time_O(log_N)_Space_O(log_N) | 9 | 73.47
1409+
14101410
## Algorithms
14111411

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

0 commit comments

Comments
 (0)
0