File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
//-----------------------------------------------------------------------------
2
- // Runtime: 244ms
3
- // Memory Usage: 31.8 MB
4
- // Link: https://leetcode.com/submissions/detail/380048857 /
2
+ // Runtime: 236ms
3
+ // Memory Usage: 32.5 MB
4
+ // Link: https://leetcode.com/submissions/detail/403607959 /
5
5
//-----------------------------------------------------------------------------
6
6
7
7
using System ;
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ The C# solutions for LeetCode problems.
82
82
| 36 | Valid Sudoku | [ C#] ( ./LeetCode/0001-0050/036-ValidSudoku.cs ) (160ms) | O(1) | O(1) | |
83
83
| 37 | Sudoku Solver | [ C#] ( ./LeetCode/0001-0050/037-SudokuSolver.cs ) (168ms) | O(1) | N(1) | |
84
84
| 38 | Count and Say | [ C#] ( ./LeetCode/0001-0050/038-CountAndSay.cs ) (80ms) | O(N<sup >2</sup >) | O(N) | Python use an dictionary of answers |
85
- | 39 | Combination Sum | [ C#] ( ./LeetCode/0001-0050/039-CombinationSum.cs ) (244ms ) | O(N!) | O(N) | |
85
+ | 39 | Combination Sum | [ C#] ( ./LeetCode/0001-0050/039-CombinationSum.cs ) (236ms ) | O(N!) | O(N) | |
86
86
| 40 | Combination Sum II | [ C#] ( ./LeetCode/0001-0050/040-CombinationSum2.cs ) (484ms) | O(N!) | O(N) | |
87
87
| 41 | First Missing Positive | [ C#] ( ./LeetCode/0001-0050/041-FirstMissingPositive.cs ) (92ms) | O(N) | O(1) | |
88
88
| 42 | Trapping Rain Water | [ C#] ( ./LeetCode/0001-0050/042-TrappingRainWater.cs ) (88ms) | O(N) | O(1) | |
You can’t perform that action at this time.
0 commit comments