修正Markdown代码块语法

This commit is contained in:
youngyangyang04
2021-05-16 20:04:36 +08:00
parent a735216a0b
commit 695f08672d

View File

@ -116,7 +116,7 @@ public:
**大家要仔细看注释思考为什么要写while(left <= right) 为什么要写right = middle - 1**
```
```C++
class Solution {
public:
int searchInsert(vector<int>& nums, int target) {
@ -158,7 +158,7 @@ public:
**大家要仔细看注释思考为什么要写while (left < right) 为什么要写right = middle**。
```
```C++
class Solution {
public:
int searchInsert(vector<int>& nums, int target) {