Skip to content

Commit

Permalink
更新 0134.加油站.md, 将暴力解法代码块后的空间复杂度说明由O(n)改为O(1)
Browse files Browse the repository at this point in the history
  • Loading branch information
speedzjy authored Mar 16, 2022
1 parent be79222 commit 1856401
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion problems/0134.加油站.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public:
```
* 时间复杂度:$O(n^2)$
* 空间复杂度:$O(n)$
* 空间复杂度:$O(1)$
C++暴力解法在leetcode上提交也可以过。
Expand Down

0 comments on commit 1856401

Please sign in to comment.