Skip to content

Commit 646c4d7

Browse files
committed
Improved task 1
1 parent 9ef6e20 commit 646c4d7

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
3131
|-|-|-|-|-|-
32-
| 0001 |[Two Sum](src/main/c/g0001_0100/s0001_two_sum)| Data_Structure_I_Day_2_Array | Big_O_Time_O(n)_Space_O(n), AI_can_be_used_to_solve_the_task | 2 | 99.56
32+
| 0001 |[Two Sum](src/main/c/g0001_0100/s0001_two_sum)| 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 | 2 | 99.56
3333

3434
#### Day 3 Array
3535

@@ -1038,7 +1038,7 @@
10381038

10391039
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
10401040
|-|-|-|-|-|-
1041-
| 0001 |[Two Sum](src/main/c/g0001_0100/s0001_two_sum)| Data_Structure_I_Day_2_Array | Big_O_Time_O(n)_Space_O(n), AI_can_be_used_to_solve_the_task | 2 | 99.56
1041+
| 0001 |[Two Sum](src/main/c/g0001_0100/s0001_two_sum)| 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 | 2 | 99.56
10421042

10431043
#### Day 14 Stack
10441044

@@ -1185,7 +1185,7 @@
11851185

11861186
| <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- --> | <!-- -->
11871187
|-|-|-|-|-|-
1188-
| 0001 |[Two Sum](src/main/c/g0001_0100/s0001_two_sum)| Data_Structure_I_Day_2_Array | Big_O_Time_O(n)_Space_O(n), AI_can_be_used_to_solve_the_task | 2 | 99.56
1188+
| 0001 |[Two Sum](src/main/c/g0001_0100/s0001_two_sum)| 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 | 2 | 99.56
11891189
| 0055 |[Jump Game](src/main/c/g0001_0100/s0055_jump_game)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Array, Dynamic_Programming, Greedy, Big_O_Time_O(n)_Space_O(1) | 0 | 100.00
11901190
| 0041 |[First Missing Positive](src/main/c/g0001_0100/s0041_first_missing_positive)| Hard | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Big_O_Time_O(n)_Space_O(n) | 0 | 100.00
11911191

@@ -1299,5 +1299,5 @@
12991299
| 0004 |[Median of Two Sorted Arrays](src/main/c/g0001_0100/s0004_median_of_two_sorted_arrays)| Hard | Top_100_Liked_Questions, Top_Interview_Questions, Array, Binary_Search, Divide_and_Conquer, Big_O_Time_O(log(min(N,M)))_Space_O(1) | 0 | 100.00
13001300
| 0003 |[Longest Substring Without Repeating Characters](src/main/c/g0001_0100/s0003_longest_substring_without_repeating_characters)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, String, Hash_Table, Sliding_Window, Algorithm_I_Day_6_Sliding_Window, Level_2_Day_14_Sliding_Window/Two_Pointer, Udemy_Strings, Big_O_Time_O(n)_Space_O(1) | 15 | 29.93
13011301
| 0002 |[Add Two Numbers](src/main/c/g0001_0100/s0002_add_two_numbers)| Medium | Top_100_Liked_Questions, Top_Interview_Questions, Math, Linked_List, Recursion, Data_Structure_II_Day_10_Linked_List, Programming_Skills_II_Day_15, Big_O_Time_O(max(N,M))_Space_O(max(N,M)), AI_can_be_used_to_solve_the_task | 12 | 70.50
1302-
| 0001 |[Two Sum](src/main/c/g0001_0100/s0001_two_sum)| Data_Structure_I_Day_2_Array | Level_1_Day_13_Hashmap, Udemy_Arrays, Big_O_Time_O(n)_Space_O(n), AI_can_be_used_to_solve_the_task | 2 | 99.56
1302+
| 0001 |[Two Sum](src/main/c/g0001_0100/s0001_two_sum)| Easy | Top_100_Liked_Questions, Top_Interview_Questions, Array, Hash_Table, Data_Structure_I_Day_2_Array, Level_1_Day_13_Hashmap, Udemy_Arrays, Big_O_Time_O(n)_Space_O(n), AI_can_be_used_to_solve_the_task | 2 | 99.56
13031303

src/main/c/g0001_0100/s0001_two_sum/readme.md

-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ You can return the answer in any order.
4343
## Solution
4444

4545
```c
46-
// #Easy #Top_100_Liked_Questions #Top_Interview_Questions #Array #Hash_Table
47-
4846
/**
4947
* Note: The returned array must be malloced, assume caller calls free().
5048
*/

0 commit comments

Comments
 (0)