Skip to content

Commit

Permalink
Commit from GitHub Actions (Generate README.md)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 1, 2024
1 parent 40c954c commit 4a12fcc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
My [LeetCode](https://leetcode.com/) submissions

- <span style="color: #00af9b;">Easy</span>: 121 / 806
- <span style="color: #ffb800;">Medium</span>: 96 / 1679
- <span style="color: #ffb800;">Medium</span>: 97 / 1679
- <span style="color: #ff2d55;">Hard</span>: 9 / 713

## Index
Expand Down Expand Up @@ -41,6 +41,7 @@ My [LeetCode](https://leetcode.com/) submissions
| 63 | <span style="color: #ffb800;">Medium</span> | [Unique Paths II](https://leetcode.com/problems/unique-paths-ii/) | [63-unique-paths-ii.cpp](./code/medium/63-unique-paths-ii.cpp) | `O(m*n)` | `O(m*n)` |
| 64 | <span style="color: #ffb800;">Medium</span> | [Minimum Path Sum](https://leetcode.com/problems/minimum-path-sum/) | [64-minimum-path-sum.cpp](./code/medium/64-minimum-path-sum.cpp) | `O(m*n)` | `O(m*n)` |
| 70 | <span style="color: #00af9b;">Easy</span> | [Climbing Stairs](https://leetcode.com/problems/climbing-stairs/) | [70-climbing-stairs.cpp](./code/easy/70-climbing-stairs.cpp) | `O(n)` | `O(n)` |
| 75 | <span style="color: #ffb800;">Medium</span> | [Sort Colors](https://leetcode.com/problems/sort-colors/) | [75-sort-colors.cpp](./code/medium/75-sort-colors.cpp) | `O(n)` | `O(1)` |
| 76 | <span style="color: #ff2d55;">Hard</span> | [Minimum Window Substring](https://leetcode.com/problems/minimum-window-substring/) | [76-minimum-window-substring.cpp](./code/hard/76-minimum-window-substring.cpp) | `O(m+n)` | `O(m)` |
| 77 | <span style="color: #ffb800;">Medium</span> | [Combinations](https://leetcode.com/problems/combinations/) | [77-combinations.cpp](./code/medium/77-combinations.cpp) | `O(k*C(n,k))` | `O(k*C(n,k))` |
| 78 | <span style="color: #ffb800;">Medium</span> | [Subsets](https://leetcode.com/problems/subsets/) | [78-subsets.cpp](./code/medium/78-subsets.cpp) | `O(n*2^n)` | `O(n*2^n)` |
Expand Down

0 comments on commit 4a12fcc

Please sign in to comment.