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 1
1
# fishercoderLeetcode
2
2
| # | Title | Solutions | Time | Space | Difficulty | Tag | Notes
3
3
|-----|----------------|------------------|-------|--------|------------|-----|------
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
4
5
|133|[ Clone Graph] ( https://leetcode.com/problems/clone-graph/ ) |[ Solution] ( ../../blob/master/MEDIUM/src/medium/CloneGraph.java ) | O(n)|O(n) | Medium| HashMap, BFS
5
6
|91|[ Decode Ways] ( https://leetcode.com/problems/decode-ways/ ) |[ Solution] ( ../../blob/master/MEDIUM/src/medium/DecodeWays.java ) | O(n)|O(n) | Medium| DP
6
7
|10|[ Regular Expression Matching] ( https://leetcode.com/problems/regular-expression-matching/ ) |[ Solution] ( ../../blob/master/HARD/src/hard/RegularExpressionMatching.java ) |O(m* n)|O(m* n)|Hard|DP
You can’t perform that action at this time.
0 commit comments