Skip to content

Commit c841357

Browse files
committed
Update 768.max-chunks-to-make-sorted-ii.md
1 parent 28ea2b1 commit c841357

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

problems/768.max-chunks-to-make-sorted-ii.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,9 @@ arr[i]的大小在[0, 10**8]之间。
7878

7979
### 代码
8080

81-
语言支持:Python
81+
- 语言支持:Python
82+
83+
Python Code:
8284

8385
```py
8486
class Solution(object):
@@ -116,7 +118,9 @@ class Solution(object):
116118

117119
### 代码
118120

119-
语言支持:Python
121+
- 语言支持:Python
122+
123+
Python Code:
120124

121125
```py
122126
class Solution(object):
@@ -209,7 +213,9 @@ class Solution(object):
209213

210214
### 代码
211215

212-
语言支持:Python,CPP,Java,JS, Go, PHP
216+
- 语言支持:Python,CPP,Java,JS, Go, PHP
217+
218+
Python Code:
213219

214220
```py
215221
class Solution:
@@ -233,7 +239,7 @@ class Solution:
233239

234240
```
235241

236-
CPP:
242+
CPP Code:
237243

238244
```cpp
239245
class Solution {
@@ -264,7 +270,7 @@ public:
264270
};
265271
```
266272

267-
JAVA:
273+
JAVA Code:
268274

269275
```java
270276
class Solution {
@@ -292,7 +298,7 @@ class Solution {
292298
}
293299
```
294300

295-
JS:
301+
JS Code:
296302

297303
```js
298304
var maxChunksToSorted = function (arr) {
@@ -312,7 +318,7 @@ var maxChunksToSorted = function (arr) {
312318
};
313319
```
314320

315-
Go:
321+
Go Code:
316322

317323
```go
318324
func maxChunksToSorted(arr []int) int {
@@ -338,7 +344,7 @@ func maxChunksToSorted(arr []int) int {
338344
}
339345
```
340346

341-
PHP:
347+
PHP Code:
342348

343349
```php
344350
class Solution

0 commit comments

Comments
 (0)