Skip to content

jerrypy/LeetCode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 

Repository files navigation

LeetCode

# Problems Solutions Note
001 001.Two_Sum Python
002 002.Add_Two_Numbers Python
003 003.Longest_Substring_Without_Repeat... Python

Update

  1. Two Sum
  • 2015.11.23 21:39 Finish O(n^2) Brute Force solution using Python
  • 2015.11.23 22:11 Finish O(n) Hash Table solution using Python
  1. Add Two Numbers
  • 2015.11.24 23:03 Finish O(n) in-place solution using Python
  1. Longest Substring Without Repeating Characters
  • 2015.11.25 22:00 Finish O(n^2) Brute Force solution , TLE , using Python
  • 2015.11.25 22:49 Finish O(n) Hash Table solution reference to illuz's solution using Python

About

My own solution of LeetCode

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages