Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitbafac7a

Browse files
authored
Updated readme
1 parent02b9fa8 commitbafac7a

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

‎README.md‎

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ Cpp-based LeetCode algorithm problem solutions, regularly updated.
3030

3131
|<!----> |<!----> |<!----> |<!----> |<!----> |<!---->
3232
|-|-|-|-|-|-
33+
| 0200 |[Number of Islands](src/main/cpp/g0101_0200/s0200_number_of_islands/Solution.cpp)| 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) | 19 | 97.48
3334

3435
####Day 2 Matrix Related Problems
3536

@@ -165,6 +166,7 @@ Cpp-based LeetCode algorithm problem solutions, regularly updated.
165166
|<!----> |<!----> |<!----> |<!----> |<!----> |<!---->
166167
|-|-|-|-|-|-
167168
| 0021 |[Merge Two Sorted Lists](src/main/cpp/g0001_0100/s0021_merge_two_sorted_lists/Solution.cpp)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Big_O_Time_O(m+n)_Space_O(m+n) | 0 | 100.00
169+
| 0206 |[Reverse Linked List](src/main/cpp/g0201_0300/s0206_reverse_linked_list/Solution.cpp)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Big_O_Time_O(N)_Space_O(1) | 0 | 100.00
168170

169171
####Day 4 Linked List
170172

@@ -195,6 +197,7 @@ Cpp-based LeetCode algorithm problem solutions, regularly updated.
195197

196198
|<!----> |<!----> |<!----> |<!----> |<!----> |<!---->
197199
|-|-|-|-|-|-
200+
| 0200 |[Number of Islands](src/main/cpp/g0101_0200/s0200_number_of_islands/Solution.cpp)| 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) | 19 | 97.48
198201

199202
####Day 10 Dynamic Programming
200203

@@ -298,6 +301,7 @@ Cpp-based LeetCode algorithm problem solutions, regularly updated.
298301

299302
|<!----> |<!----> |<!----> |<!----> |<!----> |<!---->
300303
|-|-|-|-|-|-
304+
| 0198 |[House Robber](src/main/cpp/g0101_0200/s0198_house_robber/Solution.cpp)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Big_O_Time_O(n)_Space_O(n) | 2 | 40.41
301305
| 0322 |[Coin Change](src/main/cpp/g0301_0400/s0322_coin_change/Solution.cpp)| Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Breadth_First_Search, Big_O_Time_O(m\*n)_Space_O(amount) | 12 | 97.65
302306

303307
####Day 13 Dynamic Programming
@@ -321,6 +325,7 @@ Cpp-based LeetCode algorithm problem solutions, regularly updated.
321325

322326
|<!----> |<!----> |<!----> |<!----> |<!----> |<!---->
323327
|-|-|-|-|-|-
328+
| 0208 |[Implement Trie (Prefix Tree)](src/main/cpp/g0201_0300/s0208_implement_trie_prefix_tree/Trie.cpp)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Hash_Table, Design, Trie, Big_O_Time_O(word.length())_or_O(prefix.length())_Space_O(N) | 57 | 37.76
324329

325330
####Day 17 Interval
326331

@@ -376,6 +381,7 @@ Cpp-based LeetCode algorithm problem solutions, regularly updated.
376381
|-|-|-|-|-|-
377382
| 0283 |[Move Zeroes](src/main/cpp/g0201_0300/s0283_move_zeroes/Solution.cpp)| Easy | Top_100_Liked_Questions, Array, Two_Pointers, Big_O_Time_O(n)_Space_O(1) | 6 | 98.89
378383
| 0001 |[Two Sum](src/main/cpp/g0001_0100/s0001_two_sum/Solution.cpp)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Big_O_Time_O(n)_Space_O(n) | 4 | 94.42
384+
| 0189 |[Rotate Array](src/main/cpp/g0101_0200/s0189_rotate_array/Solution.cpp)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Math, Two_Pointers, Big_O_Time_O(n)_Space_O(1) | 18 | 77.84
379385
| 0055 |[Jump Game](src/main/cpp/g0001_0100/s0055_jump_game/Solution.cpp)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Greedy, Big_O_Time_O(n)_Space_O(1) | 31 | 96.95
380386
| 0238 |[Product of Array Except Self](src/main/cpp/g0201_0300/s0238_product_of_array_except_self/Solution.cpp)| Medium | Top_100_Liked_Questions, Array, Prefix_Sum, Big_O_Time_O(n^2)_Space_O(n) | 21 | 88.52
381387
| 0041 |[First Missing Positive](src/main/cpp/g0001_0100/s0041_first_missing_positive/Solution.cpp)| Hard | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Big_O_Time_O(n)_Space_O(n) | 42 | 69.19
@@ -393,6 +399,7 @@ Cpp-based LeetCode algorithm problem solutions, regularly updated.
393399
|<!----> |<!----> |<!----> |<!----> |<!----> |<!---->
394400
|-|-|-|-|-|-
395401
| 0053 |[Maximum Subarray](src/main/cpp/g0001_0100/s0053_maximum_subarray/Solution.cpp)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Divide_and_Conquer, Big_O_Time_O(n)_Space_O(1) | 65 | 93.14
402+
| 0169 |[Majority Element](src/main/cpp/g0101_0200/s0169_majority_element/Solution.cpp)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Sorting, Counting, Divide_and_Conquer, Big_O_Time_O(n)_Space_O(1) | 10 | 95.79
396403

397404
####Udemy Sorting Algorithms
398405

@@ -411,7 +418,9 @@ Cpp-based LeetCode algorithm problem solutions, regularly updated.
411418
|<!----> |<!----> |<!----> |<!----> |<!----> |<!---->
412419
|-|-|-|-|-|-
413420
| 0024 |[Swap Nodes in Pairs](src/main/cpp/g0001_0100/s0024_swap_nodes_in_pairs/Solution.cpp)| Medium | Top_100_Liked_Questions, Linked_List, Recursion, Big_O_Time_O(n)_Space_O(1) | 0 | 100.00
421+
| 0206 |[Reverse Linked List](src/main/cpp/g0201_0300/s0206_reverse_linked_list/Solution.cpp)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Big_O_Time_O(N)_Space_O(1) | 0 | 100.00
414422
| 0021 |[Merge Two Sorted Lists](src/main/cpp/g0001_0100/s0021_merge_two_sorted_lists/Solution.cpp)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Big_O_Time_O(m+n)_Space_O(m+n) | 0 | 100.00
423+
| 0160 |[Intersection of Two Linked Lists](src/main/cpp/g0101_0200/s0160_intersection_of_two_linked_lists/Solution.cpp)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Hash_Table, Two_Pointers, Linked_List, Big_O_Time_O(M+N)_Space_O(1) | 30 | 96.07
415424
| 0234 |[Palindrome Linked List](src/main/cpp/g0201_0300/s0234_palindrome_linked_list/Solution.cpp)| Easy | Top_100_Liked_Questions, Two_Pointers, Stack, Linked_List, Recursion, Big_O_Time_O(n)_Space_O(1) | 154 | 83.63
416425
| 0025 |[Reverse Nodes in k-Group](src/main/cpp/g0001_0100/s0025_reverse_nodes_in_k_group/Solution.cpp)| Hard | Top_100_Liked_Questions, Linked_List, Recursion, Big_O_Time_O(n)_Space_O(k) | 3 | 98.79
417426

@@ -427,16 +436,19 @@ Cpp-based LeetCode algorithm problem solutions, regularly updated.
427436

428437
|<!----> |<!----> |<!----> |<!----> |<!----> |<!---->
429438
|-|-|-|-|-|-
439+
| 0208 |[Implement Trie (Prefix Tree)](src/main/cpp/g0201_0300/s0208_implement_trie_prefix_tree/Trie.cpp)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Hash_Table, Design, Trie, Big_O_Time_O(word.length())_or_O(prefix.length())_Space_O(N) | 57 | 37.76
430440

431441
####Udemy Graph
432442

433443
|<!----> |<!----> |<!----> |<!----> |<!----> |<!---->
434444
|-|-|-|-|-|-
445+
| 0200 |[Number of Islands](src/main/cpp/g0101_0200/s0200_number_of_islands/Solution.cpp)| 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) | 19 | 97.48
435446

436447
####Udemy Dynamic Programming
437448

438449
|<!----> |<!----> |<!----> |<!----> |<!----> |<!---->
439450
|-|-|-|-|-|-
451+
| 0198 |[House Robber](src/main/cpp/g0101_0200/s0198_house_robber/Solution.cpp)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Big_O_Time_O(n)_Space_O(n) | 2 | 40.41
440452
| 0064 |[Minimum Path Sum](src/main/cpp/g0001_0100/s0064_minimum_path_sum/Solution.cpp)| Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Matrix, Big_O_Time_O(m\*n)_Space_O(m\*n) | 2 | 95.63
441453
| 0300 |[Longest Increasing Subsequence](src/main/cpp/g0201_0300/s0300_longest_increasing_subsequence/Solution.cpp)| Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Binary_Search, Big_O_Time_O(n\*log_n)_Space_O(n) | 4 | 94.11
442454
| 1143 |[Longest Common Subsequence](src/main/cpp/g1101_1200/s1143_longest_common_subsequence/Solution.cpp)| Medium | Top_100_Liked_Questions, String, Dynamic_Programming, Big_O_Time_O(n\*m)_Space_O(n\*m) | 23 | 62.70
@@ -506,6 +518,7 @@ Cpp-based LeetCode algorithm problem solutions, regularly updated.
506518

507519
|<!----> |<!----> |<!----> |<!----> |<!----> |<!---->
508520
|-|-|-|-|-|-
521+
| 0206 |[Reverse Linked List](src/main/cpp/g0201_0300/s0206_reverse_linked_list/Solution.cpp)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Big_O_Time_O(N)_Space_O(1) | 0 | 100.00
509522

510523
####Day 9 Stack Queue
511524

@@ -545,6 +558,7 @@ Cpp-based LeetCode algorithm problem solutions, regularly updated.
545558

546559
|<!----> |<!----> |<!----> |<!----> |<!----> |<!---->
547560
|-|-|-|-|-|-
561+
| 0169 |[Majority Element](src/main/cpp/g0101_0200/s0169_majority_element/Solution.cpp)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Sorting, Counting, Divide_and_Conquer, Big_O_Time_O(n)_Space_O(1) | 10 | 95.79
548562
| 0015 |[3Sum](src/main/cpp/g0001_0100/s0015_3sum/Solution.cpp)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Sorting, Two_Pointers, Big_O_Time_O(n\*log(n))_Space_O(n^2) | 53 | 90.17
549563

550564
####Day 2 Array
@@ -605,6 +619,7 @@ Cpp-based LeetCode algorithm problem solutions, regularly updated.
605619

606620
|<!----> |<!----> |<!----> |<!----> |<!----> |<!---->
607621
|-|-|-|-|-|-
622+
| 0160 |[Intersection of Two Linked Lists](src/main/cpp/g0101_0200/s0160_intersection_of_two_linked_lists/Solution.cpp)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Hash_Table, Two_Pointers, Linked_List, Big_O_Time_O(M+N)_Space_O(1) | 30 | 96.07
608623

609624
####Day 12 Linked List
610625

@@ -654,6 +669,7 @@ Cpp-based LeetCode algorithm problem solutions, regularly updated.
654669

655670
|<!----> |<!----> |<!----> |<!----> |<!----> |<!---->
656671
|-|-|-|-|-|-
672+
| 0215 |[Kth Largest Element in an Array](src/main/cpp/g0201_0300/s0215_kth_largest_element_in_an_array/Solution.cpp)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Sorting, Heap_Priority_Queue, Divide_and_Conquer, Quickselect, Big_O_Time_O(n\*log(n))_Space_O(log(n)) | 74 | 91.60
657673
| 0347 |[Top K Frequent Elements](src/main/cpp/g0301_0400/s0347_top_k_frequent_elements/Solution.cpp)| Medium | Top_100_Liked_Questions, Array, Hash_Table, Sorting, Heap_Priority_Queue, Counting, Divide_and_Conquer, Quickselect, Bucket_Sort, Big_O_Time_O(n\*log(n))_Space_O(k) | 11 | 69.14
658674

659675
####Day 21 Heap Priority Queue
@@ -673,6 +689,7 @@ Cpp-based LeetCode algorithm problem solutions, regularly updated.
673689

674690
|<!----> |<!----> |<!----> |<!----> |<!----> |<!---->
675691
|-|-|-|-|-|-
692+
| 0189 |[Rotate Array](src/main/cpp/g0101_0200/s0189_rotate_array/Solution.cpp)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Math, Two_Pointers, Big_O_Time_O(n)_Space_O(1) | 18 | 77.84
676693

677694
####Day 3 Two Pointers
678695

@@ -717,6 +734,7 @@ Cpp-based LeetCode algorithm problem solutions, regularly updated.
717734
|<!----> |<!----> |<!----> |<!----> |<!----> |<!---->
718735
|-|-|-|-|-|-
719736
| 0021 |[Merge Two Sorted Lists](src/main/cpp/g0001_0100/s0021_merge_two_sorted_lists/Solution.cpp)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Big_O_Time_O(m+n)_Space_O(m+n) | 0 | 100.00
737+
| 0206 |[Reverse Linked List](src/main/cpp/g0201_0300/s0206_reverse_linked_list/Solution.cpp)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Big_O_Time_O(N)_Space_O(1) | 0 | 100.00
720738

721739
####Day 11 Recursion Backtracking
722740

@@ -728,6 +746,7 @@ Cpp-based LeetCode algorithm problem solutions, regularly updated.
728746

729747
|<!----> |<!----> |<!----> |<!----> |<!----> |<!---->
730748
|-|-|-|-|-|-
749+
| 0198 |[House Robber](src/main/cpp/g0101_0200/s0198_house_robber/Solution.cpp)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Big_O_Time_O(n)_Space_O(n) | 2 | 40.41
731750

732751
####Day 13 Bit Manipulation
733752

@@ -775,6 +794,7 @@ Cpp-based LeetCode algorithm problem solutions, regularly updated.
775794

776795
|<!----> |<!----> |<!----> |<!----> |<!----> |<!---->
777796
|-|-|-|-|-|-
797+
| 0200 |[Number of Islands](src/main/cpp/g0101_0200/s0200_number_of_islands/Solution.cpp)| 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) | 19 | 97.48
778798

779799
####Day 7 Breadth First Search Depth First Search
780800

@@ -1047,6 +1067,7 @@ Cpp-based LeetCode algorithm problem solutions, regularly updated.
10471067

10481068
|<!----> |<!----> |<!----> |<!----> |<!----> |<!---->
10491069
|-|-|-|-|-|-
1070+
| 0198 |[House Robber](src/main/cpp/g0101_0200/s0198_house_robber/Solution.cpp)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Big_O_Time_O(n)_Space_O(n) | 2 | 40.41
10501071

10511072
####Day 4
10521073

@@ -1118,6 +1139,7 @@ Cpp-based LeetCode algorithm problem solutions, regularly updated.
11181139
|<!----> |<!----> |<!----> |<!----> |<!----> |<!---->
11191140
|-|-|-|-|-|-
11201141
| 0064 |[Minimum Path Sum](src/main/cpp/g0001_0100/s0064_minimum_path_sum/Solution.cpp)| Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Matrix, Big_O_Time_O(m\*n)_Space_O(m\*n) | 2 | 95.63
1142+
| 0221 |[Maximal Square](src/main/cpp/g0201_0300/s0221_maximal_square/Solution.cpp)| Medium | Array, Dynamic_Programming, Matrix, Big_O_Time_O(m\*n)_Space_O(m\*n) | 56 | 84.56
11211143

11221144
####Day 17
11231145

@@ -1347,6 +1369,16 @@ Cpp-based LeetCode algorithm problem solutions, regularly updated.
13471369
| 0234 |[Palindrome Linked List](src/main/cpp/g0201_0300/s0234_palindrome_linked_list/Solution.cpp)| Easy | Top_100_Liked_Questions, Two_Pointers, Stack, Linked_List, Recursion, Level_2_Day_3_Linked_List, Udemy_Linked_List, Big_O_Time_O(n)_Space_O(1) | 154 | 83.63
13481370
| 0230 |[Kth Smallest Element in a BST](src/main/cpp/g0201_0300/s0230_kth_smallest_element_in_a_bst/Solution.cpp)| Medium | Top_100_Liked_Questions, Depth_First_Search, Tree, Binary_Tree, Binary_Search_Tree, Data_Structure_II_Day_17_Tree, Level_2_Day_9_Binary_Search_Tree, Big_O_Time_O(n)_Space_O(n) | 7 | 94.52
13491371
| 0226 |[Invert Binary Tree](src/main/cpp/g0201_0300/s0226_invert_binary_tree/Solution.cpp)| Easy | Top_100_Liked_Questions, Depth_First_Search, Breadth_First_Search, Tree, Binary_Tree, Data_Structure_I_Day_12_Tree, Level_2_Day_6_Tree, Udemy_Tree_Stack_Queue, Big_O_Time_O(n)_Space_O(n) | 2 | 45.75
1372+
| 0221 |[Maximal Square](src/main/cpp/g0201_0300/s0221_maximal_square/Solution.cpp)| Medium | Array, Dynamic_Programming, Matrix, Dynamic_Programming_I_Day_16, Big_O_Time_O(m\*n)_Space_O(m\*n) | 56 | 84.56
1373+
| 0215 |[Kth Largest Element in an Array](src/main/cpp/g0201_0300/s0215_kth_largest_element_in_an_array/Solution.cpp)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Sorting, Heap_Priority_Queue, Divide_and_Conquer, Quickselect, Data_Structure_II_Day_20_Heap_Priority_Queue, Big_O_Time_O(n\*log(n))_Space_O(log(n)) | 74 | 91.60
1374+
| 0208 |[Implement Trie (Prefix Tree)](src/main/cpp/g0201_0300/s0208_implement_trie_prefix_tree/Trie.cpp)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Hash_Table, Design, Trie, Level_2_Day_16_Design, Udemy_Trie_and_Heap, Big_O_Time_O(word.length())_or_O(prefix.length())_Space_O(N) | 57 | 37.76
1375+
| 0207 |[Course Schedule](src/main/cpp/g0201_0300/s0207_course_schedule/Solution.cpp)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Depth_First_Search, Breadth_First_Search, Graph, Topological_Sort, Big_O_Time_O(N)_Space_O(N) | 15 | 70.71
1376+
| 0206 |[Reverse Linked List](src/main/cpp/g0201_0300/s0206_reverse_linked_list/Solution.cpp)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Linked_List, Recursion, Data_Structure_I_Day_8_Linked_List, Algorithm_I_Day_10_Recursion_Backtracking, Level_1_Day_3_Linked_List, Udemy_Linked_List, Big_O_Time_O(N)_Space_O(1) | 0 | 100.00
1377+
| 0200 |[Number of Islands](src/main/cpp/g0101_0200/s0200_number_of_islands/Solution.cpp)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Depth_First_Search, Breadth_First_Search, Matrix, Union_Find, Algorithm_II_Day_6_Breadth_First_Search_Depth_First_Search, Graph_Theory_I_Day_1_Matrix_Related_Problems, Level_1_Day_9_Graph/BFS/DFS, Udemy_Graph, Big_O_Time_O(M\*N)_Space_O(M\*N) | 19 | 97.48
1378+
| 0198 |[House Robber](src/main/cpp/g0101_0200/s0198_house_robber/Solution.cpp)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Algorithm_I_Day_12_Dynamic_Programming, Dynamic_Programming_I_Day_3, Level_2_Day_12_Dynamic_Programming, Udemy_Dynamic_Programming, Big_O_Time_O(n)_Space_O(n) | 2 | 40.41
1379+
| 0189 |[Rotate Array](src/main/cpp/g0101_0200/s0189_rotate_array/Solution.cpp)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Math, Two_Pointers, Algorithm_I_Day_2_Two_Pointers, Udemy_Arrays, Big_O_Time_O(n)_Space_O(1) | 18 | 77.84
1380+
| 0169 |[Majority Element](src/main/cpp/g0101_0200/s0169_majority_element/Solution.cpp)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Sorting, Counting, Divide_and_Conquer, Data_Structure_II_Day_1_Array, Udemy_Famous_Algorithm, Big_O_Time_O(n)_Space_O(1) | 10 | 95.79
1381+
| 0160 |[Intersection of Two Linked Lists](src/main/cpp/g0101_0200/s0160_intersection_of_two_linked_lists/Solution.cpp)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Hash_Table, Two_Pointers, Linked_List, Data_Structure_II_Day_11_Linked_List, Udemy_Linked_List, Big_O_Time_O(M+N)_Space_O(1) | 30 | 96.07
13501382
| 0064 |[Minimum Path Sum](src/main/cpp/g0001_0100/s0064_minimum_path_sum/Solution.cpp)| Medium | Top_100_Liked_Questions, Array, Dynamic_Programming, Matrix, Dynamic_Programming_I_Day_16, Udemy_Dynamic_Programming, Big_O_Time_O(m\*n)_Space_O(m\*n) | 2 | 95.63
13511383
| 0062 |[Unique Paths](src/main/cpp/g0001_0100/s0062_unique_paths/Solution.cpp)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Dynamic_Programming, Math, Combinatorics, Algorithm_II_Day_13_Dynamic_Programming, Dynamic_Programming_I_Day_15, Level_1_Day_11_Dynamic_Programming, Big_O_Time_O(m\*n)_Space_O(m\*n) | 0 | 100.00
13521384
| 0056 |[Merge Intervals](src/main/cpp/g0001_0100/s0056_merge_intervals/Solution.cpp)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Sorting, Data_Structure_II_Day_2_Array, Level_2_Day_17_Interval, Udemy_2D_Arrays/Matrix, Big_O_Time_O(n_log_n)_Space_O(n) | 19 | 85.51

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp