Skip to content

Commit

Permalink
Update Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
wisdompeak authored Jul 6, 2022
1 parent 2ef632f commit db0bd4d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

这样的时间复杂度就是 ```log(N)*N```.

对于有唯一确定解的题目(注意不是有唯一最优解),除了可以沿用我一贯推荐的```while(left<=right)```模板之外,我们可以用这样的模板:
对于有唯一确定解的题目(注意不是有唯一最优解),除了可以沿用我一贯推荐的```while(left<right)```模板之外,我们可以用这样的模板:
```cpp
while (left<=right)
{
Expand Down

0 comments on commit db0bd4d

Please sign in to comment.