Skip to content

Commit

Permalink
fix-some
Browse files Browse the repository at this point in the history
  • Loading branch information
Stevenzwzhai committed Apr 22, 2018
1 parent 8afcd18 commit a2ad801
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Array-sort/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function quickSort(arr){
rightArr.push(_arr[i]);
}
}
return quickSort(leftArr).concat(temp, quickSort(rightArr));
return quickSort(leftArr).concat([temp], quickSort(rightArr));
}
//插入排序(v8在10个以内的数组是这么排序的)
function insertSort(arr){
Expand Down
1 change: 1 addition & 0 deletions date-format/Main/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/**
* Created by Stevenzwzhai on 2017/2/8.
*/
请移步https://github.com/Stevenzwzhai/z-mimo
(function(date){
var _date = date;
})(date)

0 comments on commit a2ad801

Please sign in to comment.