File tree Expand file tree Collapse file tree 1 file changed +1
-0
lines changed Expand file tree Collapse file tree 1 file changed +1
-0
lines changed Original file line number Diff line number Diff line change 2
2
| # | Title | Solutions | Time | Space | Difficulty | Tag | Notes
3
3
|-----|----------------|------------------|-------|--------|------------|-----|------
4
4
|278|[ First Bad Version] ( https://leetcode.com/problems/first-bad-version/ ) |[ Solution] ( ../../blob/master/EASY/src/easy/FirstBadVersion.java ) | O(logn)|O(1) | Easy| Binary Search
5
+ |139|[ Word Break] ( https://leetcode.com/problems/word-break/ ) |[ Solution] ( ../../blob/master/MEDIUM/src/medium/WordBreak.java ) | O(n^2)|O(n) | Medium| DP
5
6
|133|[ Clone Graph] ( https://leetcode.com/problems/clone-graph/ ) |[ Solution] ( ../../blob/master/MEDIUM/src/medium/CloneGraph.java ) | O(n)|O(n) | Medium| HashMap, BFS
6
7
|91|[ Decode Ways] ( https://leetcode.com/problems/decode-ways/ ) |[ Solution] ( ../../blob/master/MEDIUM/src/medium/DecodeWays.java ) | O(n)|O(n) | Medium| DP
7
8
|76|[ Minimum Window Substring] ( https://leetcode.com/problems/minimum-window-substring/ ) |[ Solution] ( ../../blob/master/HARD/src/hard/MinimumWindowSubstring.java ) |O(n)|O(k)|Hard|Two Pointers
You can’t perform that action at this time.
0 commit comments