Skip to content

Commit 0f55ffa

Browse files
committed
Improved tasks
1 parent 1d3a72b commit 0f55ffa

File tree

8 files changed

+0
-29
lines changed

8 files changed

+0
-29
lines changed

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ You can return the answer in any order.
4444

4545
```erlang
4646
% #Easy #Top_100_Liked_Questions #Top_Interview_Questions #Array #Hash_Table
47-
% #Data_Structure_I_Day_2_Array #Level_1_Day_13_Hashmap #Udemy_Arrays #Big_O_Time_O(n)_Space_O(n)
48-
% #AI_can_be_used_to_solve_the_task #2025_01_05_Time_3_(97.50%)_Space_65.32_(7.50%)
4947

5048
-spec two_sum(Nums :: [integer()], Target :: integer()) -> [integer()].
5149
two_sum(Nums, Target) ->

src/main/erlang/g0001_0100/s0002_add_two_numbers/readme.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,6 @@ You may assume the two numbers do not contain any leading zero, except the numbe
4040
## Solution
4141

4242
```erlang
43-
% #Medium #Top_100_Liked_Questions #Top_Interview_Questions #Math #Linked_List #Recursion
44-
% #Data_Structure_II_Day_10_Linked_List #Programming_Skills_II_Day_15
45-
% #Big_O_Time_O(max(N,M))_Space_O(max(N,M)) #AI_can_be_used_to_solve_the_task
46-
% #2025_01_05_Time_1_(77.78%)_Space_63.11_(100.00%)
47-
4843
%% Definition for singly-linked list.
4944
%%
5045
%% -record(list_node, {val = 0 :: integer(),

src/main/erlang/g0001_0100/s0003_longest_substring_without_repeating_characters/readme.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,6 @@ Given a string `s`, find the length of the **longest substring** without repeati
4545
## Solution
4646

4747
```erlang
48-
% #Medium #Top_100_Liked_Questions #Top_Interview_Questions #String #Hash_Table #Sliding_Window
49-
% #Algorithm_I_Day_6_Sliding_Window #Level_2_Day_14_Sliding_Window/Two_Pointer #Udemy_Strings
50-
% #Big_O_Time_O(n)_Space_O(1) #AI_can_be_used_to_solve_the_task
51-
% #2025_01_08_Time_11_(100.00%)_Space_61.60_(60.00%)
52-
5348
-spec length_of_longest_substring(S :: unicode:unicode_binary()) -> integer().
5449
length_of_longest_substring(S) ->
5550
do(S, 0, #{}, 0, 1).

src/main/erlang/g0001_0100/s0004_median_of_two_sorted_arrays/readme.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,6 @@ The overall run time complexity should be `O(log (m+n))`.
5555
## Solution
5656

5757
```erlang
58-
% #Hard #Top_100_Liked_Questions #Top_Interview_Questions #Array #Binary_Search #Divide_and_Conquer
59-
% #Big_O_Time_O(log(min(N,M)))_Space_O(1) #AI_can_be_used_to_solve_the_task
60-
% #2025_01_08_Time_1_(100.00%)_Space_65.96_(100.00%)
61-
6258
-spec find_median_sorted_arrays(Nums1 :: [integer()], Nums2 :: [integer()]) -> float().
6359
find_median_sorted_arrays(Nums1, Nums2) ->
6460
Len = length(Nums1) + length(Nums2),

src/main/erlang/g0001_0100/s0005_longest_palindromic_substring/readme.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,6 @@ Given a string `s`, return _the longest palindromic substring_ in `s`.
3939
## Solution
4040

4141
```erlang
42-
% #Medium #Top_100_Liked_Questions #Top_Interview_Questions #String #Dynamic_Programming
43-
% #Data_Structure_II_Day_9_String #Algorithm_II_Day_14_Dynamic_Programming
44-
% #Dynamic_Programming_I_Day_17 #Udemy_Strings #Big_O_Time_O(n)_Space_O(n)
45-
% #2025_01_08_Time_179_(100.00%)_Space_59.84_(100.00%)
46-
4742
-spec longest_palindrome(S :: unicode:unicode_binary()) -> unicode:unicode_binary().
4843
longest_palindrome(S) ->
4944
Length = byte_size(S),

src/main/erlang/g0001_0100/s0006_zigzag_conversion/readme.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ string convert(string s, int numRows);
4444
## Solution
4545

4646
```erlang
47-
% #Medium #String #2025_01_08_Time_203_(100.00%)_Space_60.52_(100.00%)
48-
4947
%% Define the function specification
5048
-spec convert(S :: unicode:unicode_binary(), NumRows :: integer()) -> unicode:unicode_binary().
5149
convert(S, NumRows) ->

src/main/erlang/g0001_0100/s0007_reverse_integer/readme.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,6 @@ Given a signed 32-bit integer `x`, return `x` _with its digits reversed_. If rev
4040
## Solution
4141

4242
```erlang
43-
% #Medium #Top_Interview_Questions #Math #Udemy_Integers
44-
% #2025_01_08_Time_244_(100.00%)_Space_58.56_(100.00%)
45-
4643
-spec reverse(X :: integer()) -> integer().
4744
reverse(X) -> reverse(X, 0).
4845
reverse(0, Work) ->

src/main/erlang/g0501_0600/s0560_subarray_sum_equals_k/readme.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ A subarray is a contiguous **non-empty** sequence of elements within an array.
3030
## Solution
3131

3232
```erlang
33-
% #Medium #Top_100_Liked_Questions #Array #Hash_Table #Prefix_Sum #Data_Structure_II_Day_5_Array
34-
% #Big_O_Time_O(n)_Space_O(n) #2025_01_08_Time_47_(100.00%)_Space_79.35_(_%)
35-
3633
-spec subarray_sum(Nums :: [integer()], K :: integer()) -> integer().
3734
subarray_sum(Nums, K) ->
3835
subarray_sum(Nums, K, 0, 0, #{0 => 1}).

0 commit comments

Comments
 (0)