|
2 | 2 | [](https://github.com/LeetCode-in-Php/LeetCode-in-Php/fork)
|
3 | 3 | > ["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)
|
4 | 4 |
|
5 |
| -* [Binary Search I](#binary-search-i) |
6 | 5 | * [Binary Search II](#binary-search-ii)
|
7 | 6 | * [Dynamic Programming I](#dynamic-programming-i)
|
8 | 7 | * [Programming Skills I](#programming-skills-i)
|
|
16 | 15 | * [Data Structure II](#data-structure-ii)
|
17 | 16 | * [Algorithm I](#algorithm-i)
|
18 | 17 | * [Algorithm II](#algorithm-ii)
|
19 |
| - |
20 |
| -### Binary Search I |
21 |
| - |
22 |
| -#### Day 1 |
23 |
| - |
24 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
25 |
| -|-|-|-|-|-|- |
26 |
| - |
27 |
| -#### Day 2 |
28 |
| - |
29 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
30 |
| -|-|-|-|-|-|- |
31 |
| -| 0035 |[Search Insert Position](src/main/php/g0001_0100/s0035_search_insert_position)| Easy | Top_100_Liked_Questions, Array, Binary_Search, Big_O_Time_O(log_n)_Space_O(1) | 8 | 85.09 |
32 |
| - |
33 |
| -#### Day 3 |
34 |
| - |
35 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
36 |
| -|-|-|-|-|-|- |
37 |
| - |
38 |
| -#### Day 4 |
39 |
| - |
40 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
41 |
| -|-|-|-|-|-|- |
42 |
| - |
43 |
| -#### Day 5 |
44 |
| - |
45 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
46 |
| -|-|-|-|-|-|- |
47 |
| -| 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)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Binary_Search, Big_O_Time_O(log_n)_Space_O(1) | 19 | 81.01 |
48 |
| - |
49 |
| -#### Day 6 |
50 |
| - |
51 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
52 |
| -|-|-|-|-|-|- |
53 |
| - |
54 |
| -#### Day 7 |
55 |
| - |
56 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
57 |
| -|-|-|-|-|-|- |
58 |
| - |
59 |
| -#### Day 8 |
60 |
| - |
61 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
62 |
| -|-|-|-|-|-|- |
63 |
| -| 0074 |[Search a 2D Matrix](src/main/php/g0001_0100/s0074_search_a_2d_matrix)| Medium | Top_100_Liked_Questions, Array, Binary_Search, Matrix, Big_O_Time_O(endRow+endCol)_Space_O(1) | 9 | 68.18 |
64 |
| - |
65 |
| -#### Day 9 |
66 |
| - |
67 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
68 |
| -|-|-|-|-|-|- |
69 |
| - |
70 |
| -#### Day 10 |
71 |
| - |
72 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
73 |
| -|-|-|-|-|-|- |
74 |
| - |
75 |
| -#### Day 11 |
76 |
| - |
77 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
78 |
| -|-|-|-|-|-|- |
79 |
| -| 0033 |[Search in Rotated Sorted Array](src/main/php/g0001_0100/s0033_search_in_rotated_sorted_array)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Binary_Search, Big_O_Time_O(log_n)_Space_O(1) | 7 | 83.17 |
80 |
| - |
81 |
| -#### Day 12 |
82 |
| - |
83 |
| -| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
84 |
| -|-|-|-|-|-|- |
85 |
| -| 0153 |[Find Minimum in Rotated Sorted Array](src/main/php/g0101_0200/s0153_find_minimum_in_rotated_sorted_array)| Medium | Top_100_Liked_Questions, Array, Binary_Search, Big_O_Time_O(log_N)_Space_O(log_N) | 9 | 73.47 |
| 18 | +* [Binary Search I](#binary-search-i) |
86 | 19 |
|
87 | 20 | ### Binary Search II
|
88 | 21 |
|
|
1398 | 1331 | | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
|
1399 | 1332 | |-|-|-|-|-|-
|
1400 | 1333 |
|
| 1334 | +### Binary Search I |
| 1335 | + |
| 1336 | +#### Day 1 |
| 1337 | + |
| 1338 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1339 | +|-|-|-|-|-|- |
| 1340 | + |
| 1341 | +#### Day 2 |
| 1342 | + |
| 1343 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1344 | +|-|-|-|-|-|- |
| 1345 | +| 0035 |[Search Insert Position](src/main/php/g0001_0100/s0035_search_insert_position)| Easy | Top_100_Liked_Questions, Array, Binary_Search, Big_O_Time_O(log_n)_Space_O(1) | 8 | 85.09 |
| 1346 | + |
| 1347 | +#### Day 3 |
| 1348 | + |
| 1349 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1350 | +|-|-|-|-|-|- |
| 1351 | + |
| 1352 | +#### Day 4 |
| 1353 | + |
| 1354 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1355 | +|-|-|-|-|-|- |
| 1356 | + |
| 1357 | +#### Day 5 |
| 1358 | + |
| 1359 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1360 | +|-|-|-|-|-|- |
| 1361 | +| 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)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Binary_Search, Big_O_Time_O(log_n)_Space_O(1) | 19 | 81.01 |
| 1362 | + |
| 1363 | +#### Day 6 |
| 1364 | + |
| 1365 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1366 | +|-|-|-|-|-|- |
| 1367 | + |
| 1368 | +#### Day 7 |
| 1369 | + |
| 1370 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1371 | +|-|-|-|-|-|- |
| 1372 | + |
| 1373 | +#### Day 8 |
| 1374 | + |
| 1375 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1376 | +|-|-|-|-|-|- |
| 1377 | +| 0074 |[Search a 2D Matrix](src/main/php/g0001_0100/s0074_search_a_2d_matrix)| Medium | Top_100_Liked_Questions, Array, Binary_Search, Matrix, Big_O_Time_O(endRow+endCol)_Space_O(1) | 9 | 68.18 |
| 1378 | + |
| 1379 | +#### Day 9 |
| 1380 | + |
| 1381 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1382 | +|-|-|-|-|-|- |
| 1383 | + |
| 1384 | +#### Day 10 |
| 1385 | + |
| 1386 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1387 | +|-|-|-|-|-|- |
| 1388 | + |
| 1389 | +#### Day 11 |
| 1390 | + |
| 1391 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1392 | +|-|-|-|-|-|- |
| 1393 | +| 0033 |[Search in Rotated Sorted Array](src/main/php/g0001_0100/s0033_search_in_rotated_sorted_array)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Binary_Search, Big_O_Time_O(log_n)_Space_O(1) | 7 | 83.17 |
| 1394 | + |
| 1395 | +#### Day 12 |
| 1396 | + |
| 1397 | +| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> |
| 1398 | +|-|-|-|-|-|- |
| 1399 | +| 0153 |[Find Minimum in Rotated Sorted Array](src/main/php/g0101_0200/s0153_find_minimum_in_rotated_sorted_array)| Medium | Top_100_Liked_Questions, Array, Binary_Search, Big_O_Time_O(log_N)_Space_O(log_N) | 9 | 73.47 |
| 1400 | + |
1401 | 1401 | ## Algorithms
|
1402 | 1402 |
|
1403 | 1403 | | # | Title | Difficulty | Tag | Time, ms | Time, %
|
|
0 commit comments