Skip to content

Yonghee9106/leetcode-solutions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

Yonghee's Leetcode Solutions

# Title Solutions Difficulty Complexity
1 Two Sum Java, JavaScript, Python Easy O ( n )
2 Add Two Numbers Java, JavaScript, Python Medium O ( m a x ( m , n ) )
3 Longest Substring Without Repeating Characters Java, JavaScript, Python Medium O ( n )
4 Median of Two Sorted Arrays Java, JavaScript, Python Hard O ( l o g ( m i n ( m , n ) ) )
5 Longest Palindromic Substring Java, JavaScript, Python Medium O ( n 2 )
6 Zigzag Conversion Java, JavaScript, Python Medium O ( n )
7 Reverse Integer Java, JavaScript, Python Medium O ( l o g ( x ) )
8 String to Integer (atoi) Medium