File tree Expand file tree Collapse file tree 10 files changed +75
-33
lines changed
S0008_string_to_integer_atoi
S0014_longest_common_prefix
G0401_0500/S0437_path_sum_iii
G0701_0800/S0763_partition_labels Expand file tree Collapse file tree 10 files changed +75
-33
lines changed Original file line number Diff line number Diff line change 1
1
namespace LeetCodeNet . G0001_0100 . S0006_zigzag_conversion {
2
2
3
- // #Medium #String #Top_Interview_150_Array/String
3
+ // #Medium #String #Top_Interview_150_Array/String #Big_O_Time_O(n)_Space_O(n)
4
4
// #2025_06_12_Time_3_ms_(95.39%)_Space_46.59_MB_(85.85%)
5
5
6
6
using System . Text ;
Original file line number Diff line number Diff line change 1
1
namespace LeetCodeNet . G0001_0100 . S0007_reverse_integer {
2
2
3
- // #Medium #Top_Interview_Questions #Math #Udemy_Integers
3
+ // #Medium #Top_Interview_Questions #Math #Udemy_Integers #Big_O_Time_O(log10(x))_Space_O(1)
4
4
// #2025_06_12_Time_14_ms_(99.26%)_Space_29.02_MB_(67.56%)
5
5
6
6
public class Solution {
Original file line number Diff line number Diff line change 1
1
namespace LeetCodeNet . G0001_0100 . S0008_string_to_integer_atoi {
2
2
3
- // #Medium #Top_Interview_Questions #String #2025_06_12_Time_0_ms_(100.00%)_Space_41.82_MB_(46.21%)
3
+ // #Medium #Top_Interview_Questions #String #Big_O_Time_O(n)_Space_O(n)
4
+ // #2025_06_12_Time_0_ms_(100.00%)_Space_41.82_MB_(46.21%)
4
5
5
6
public class Solution {
6
7
public int MyAtoi ( string str ) {
Original file line number Diff line number Diff line change 1
1
namespace LeetCodeNet . G0001_0100 . S0009_palindrome_number {
2
2
3
- // #Easy #Math #Udemy_Integers #Top_Interview_150_Math
3
+ // #Easy #Math #Udemy_Integers #Top_Interview_150_Math #Big_O_Time_O(log10(x))_Space_O(1)
4
4
// #2025_06_12_Time_1_ms_(99.90%)_Space_34.74_MB_(67.61%)
5
5
6
6
public class Solution {
Original file line number Diff line number Diff line change 1
1
namespace LeetCodeNet . G0001_0100 . S0012_integer_to_roman {
2
2
3
- // #Medium #String #Hash_Table #Math #Top_Interview_150_Array/String
3
+ // #Medium #String #Hash_Table #Math #Top_Interview_150_Array/String #Big_O_Time_O(1)_Space_O(1)
4
4
// #2025_06_20_Time_2_ms_(87.59%)_Space_45.13_MB_(98.99%)
5
5
6
6
public class Solution
Original file line number Diff line number Diff line change 1
1
namespace LeetCodeNet . G0001_0100 . S0013_roman_to_integer {
2
2
3
- // #Easy #Top_100_Liked_Questions # Top_Interview_Questions #String #Hash_Table #Math
4
- // #Top_Interview_150_Array/String #2025_06_20_Time_1_ms_(99.81%)_Space_49.42_MB_(80.66%)
3
+ // #Easy #Top_Interview_Questions #String #Hash_Table #Math #Top_Interview_150_Array/String
4
+ // #Big_O_Time_O(n)_Space_O(1) #2025_06_20_Time_1_ms_(99.81%)_Space_49.42_MB_(80.66%)
5
5
6
6
public class Solution
7
7
{
Original file line number Diff line number Diff line change 1
1
namespace LeetCodeNet . G0001_0100 . S0014_longest_common_prefix {
2
2
3
- // #Easy #Top_100_Liked_Questions # Top_Interview_Questions #String #Level_2_Day_2_String
4
- // #Udemy_Strings # Top_Interview_150_Array/String
3
+ // #Easy #Top_Interview_Questions #String #Level_2_Day_2_String #Udemy_Strings
4
+ // #Top_Interview_150_Array/String #Big_O_Time_O(n*m)_Space_O(m)
5
5
// #2025_06_20_Time_0_ms_(100.00%)_Space_42.70_MB_(97.50%)
6
6
7
7
public class Solution
Original file line number Diff line number Diff line change 1
1
namespace LeetCodeNet . G0401_0500 . S0437_path_sum_iii {
2
2
3
- // #Medium #Depth_First_Search #Tree #Binary_Tree #LeetCode_75_Binary_Tree/DFS #Level_2_Day_7_Tree
4
- // #Big_O_Time_O(n)_Space_O(n) #2025_06_16_Time_10_ms_(66.33%)_Space_44.34_MB_(85.37%)
3
+ // #Medium #Top_100_Liked_Questions #Depth_First_Search #Tree #Binary_Tree
4
+ // #LeetCode_75_Binary_Tree/DFS #Level_2_Day_7_Tree #Big_O_Time_O(n)_Space_O(n)
5
+ // #2025_06_16_Time_10_ms_(66.33%)_Space_44.34_MB_(85.37%)
5
6
6
7
using LeetCodeNet . Com_github_leetcode ;
7
8
Original file line number Diff line number Diff line change 1
1
namespace LeetCodeNet . G0701_0800 . S0763_partition_labels {
2
2
3
- // #Medium #String #Hash_Table #Greedy #Two_Pointers #Data_Structure_II_Day_7_String
4
- // #Big_O_Time_O(n)_Space_O(1) #2025_06_16_Time_2_ms_(86.67%)_Space_46.51_MB_(87.11%)
3
+ // #Medium #Top_100_Liked_Questions #String #Hash_Table #Greedy #Two_Pointers
4
+ // #Data_Structure_II_Day_7_String #Big_O_Time_O(n)_Space_O(1)
5
+ // #2025_06_16_Time_2_ms_(86.67%)_Space_46.51_MB_(87.11%)
5
6
6
7
using System . Collections . Generic ;
7
8
Load Diff Large diffs are not rendered by default.
You can’t perform that action at this time.
0 commit comments