Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Algorithm/algorithm-ch.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ function sum(a, b) {

```js
function checkArray(array) {
if (!array || array.length <= 2) return
return array && array.length > 2;
}
function swap(array, left, right) {
let rightValue = array[right]
Expand Down
2 changes: 1 addition & 1 deletion Algorithm/algorithm-en.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ The following two functions will be used in sorting commonly, so I don't write t

```js
function checkArray(array) {
if (!array || array.length <= 2) return
return array && array.length > 2;
}
function swap(array, left, right) {
let rightValue = array[right]
Expand Down