@@ -92,7 +92,7 @@ implementation 'com.github.javadev:leetcode-in-kotlin:1.28'
92
92
|-|-|-|-|-|-
93
93
| 0121 |[ Best Time to Buy and Sell Stock] ( src/main/kotlin/g0101_0200/s0121_best_time_to_buy_and_sell_stock/Solution.kt ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Big_O_Time_O(N)_ Space_O(1) | 609 | 94.06
94
94
| 0283 |[ Move Zeroes] ( src/main/kotlin/g0201_0300/s0283_move_zeroes/Solution.kt ) | Easy | Top_100_Liked_Questions, Array, Two_Pointers, Big_O_Time_O(n)_ Space_O(1) | 516 | 79.07
95
- | 0001 |[ Two Sum] ( src/main/kotlin/g0001_0100/s0001_two_sum/Solution.kt ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Big_O_Time_O(n)_ Space_O(n) | 202 | 91.18
95
+ | 0001 |[ Two Sum] ( src/main/kotlin/g0001_0100/s0001_two_sum/Solution.kt ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Big_O_Time_O(n)_ Space_O(n), AI_can_be_used_to_solve_the_task | 202 | 91.18
96
96
| 0217 |[ Contains Duplicate] ( src/main/kotlin/g0201_0300/s0217_contains_duplicate/Solution.kt ) | Easy | Top_Interview_Questions, Array, Hash_Table, Sorting | 719 | 73.49
97
97
| 0058 |[ Length of Last Word] ( src/main/kotlin/g0001_0100/s0058_length_of_last_word/Solution.kt ) | Easy | String | 135 | 93.67
98
98
| 0605 |[ Can Place Flowers] ( src/main/kotlin/g0601_0700/s0605_can_place_flowers/Solution.kt ) | Easy | Array, Greedy | 209 | 85.71
@@ -276,7 +276,7 @@ implementation 'com.github.javadev:leetcode-in-kotlin:1.28'
276
276
277
277
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
278
278
|-|-|-|-|-|-
279
- | 0001 |[ Two Sum] ( src/main/kotlin/g0001_0100/s0001_two_sum/Solution.kt ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Big_O_Time_O(n)_ Space_O(n) | 202 | 91.18
279
+ | 0001 |[ Two Sum] ( src/main/kotlin/g0001_0100/s0001_two_sum/Solution.kt ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Big_O_Time_O(n)_ Space_O(n), AI_can_be_used_to_solve_the_task | 202 | 91.18
280
280
| 0088 |[ Merge Sorted Array] ( src/main/kotlin/g0001_0100/s0088_merge_sorted_array/Solution.kt ) | Easy | Top_Interview_Questions, Array, Sorting, Two_Pointers | 170 | 69.74
281
281
282
282
#### Day 3 Array
@@ -441,7 +441,7 @@ implementation 'com.github.javadev:leetcode-in-kotlin:1.28'
441
441
442
442
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
443
443
|-|-|-|-|-|-
444
- | 0002 |[ Add Two Numbers] ( src/main/kotlin/g0001_0100/s0002_add_two_numbers/Solution.kt ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Math, Linked_List, Recursion, Big_O_Time_O(max(N,M))_ Space_O(max(N,M)) | 203 | 96.13
444
+ | 0002 |[ Add Two Numbers] ( src/main/kotlin/g0001_0100/s0002_add_two_numbers/Solution.kt ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Math, Linked_List, Recursion, Big_O_Time_O(max(N,M))_ Space_O(max(N,M)), AI_can_be_used_to_solve_the_task | 203 | 96.13
445
445
| 0142 |[ Linked List Cycle II] ( src/main/kotlin/g0101_0200/s0142_linked_list_cycle_ii/Solution.kt ) | Medium | Top_100_Liked_Questions, Hash_Table, Two_Pointers, Linked_List, Big_O_Time_O(N)_ Space_O(1) | 192 | 63.39
446
446
447
447
#### Day 11 Linked List
@@ -1362,7 +1362,7 @@ implementation 'com.github.javadev:leetcode-in-kotlin:1.28'
1362
1362
1363
1363
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1364
1364
|-|-|-|-|-|-
1365
- | 0002 |[ Add Two Numbers] ( src/main/kotlin/g0001_0100/s0002_add_two_numbers/Solution.kt ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Math, Linked_List, Recursion, Big_O_Time_O(max(N,M))_ Space_O(max(N,M)) | 203 | 96.13
1365
+ | 0002 |[ Add Two Numbers] ( src/main/kotlin/g0001_0100/s0002_add_two_numbers/Solution.kt ) | Medium | Top_100_Liked_Questions, Top_Interview_Questions, Math, Linked_List, Recursion, Big_O_Time_O(max(N,M))_ Space_O(max(N,M)), AI_can_be_used_to_solve_the_task | 203 | 96.13
1366
1366
| 0445 |[ Add Two Numbers II] ( src/main/kotlin/g0401_0500/s0445_add_two_numbers_ii/Solution.kt ) | Medium | Math, Stack, Linked_List | 240 | 82.61
1367
1367
1368
1368
#### Day 16
@@ -1680,7 +1680,7 @@ implementation 'com.github.javadev:leetcode-in-kotlin:1.28'
1680
1680
1681
1681
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
1682
1682
|-|-|-|-|-|-
1683
- | 0001 |[ Two Sum] ( src/main/kotlin/g0001_0100/s0001_two_sum/Solution.kt ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Big_O_Time_O(n)_ Space_O(n) | 202 | 91.18
1683
+ | 0001 |[ Two Sum] ( src/main/kotlin/g0001_0100/s0001_two_sum/Solution.kt ) | Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Big_O_Time_O(n)_ Space_O(n), AI_can_be_used_to_solve_the_task | 202 | 91.18
1684
1684
| 0299 |[ Bulls and Cows] ( src/main/kotlin/g0201_0300/s0299_bulls_and_cows/Solution.kt ) | Medium | String, Hash_Table, Counting | 254 | 84.82
1685
1685
1686
1686
#### Day 14 Stack
0 commit comments