##Cheat Sheet
- detailyang's Cheat Sheet
- shadowbq's Cheat Sheet
- DZone
- Our Favorite Cheat Sheets
- quick reference sheets in one page
##Interview
List<int> mergeSort(List<int> array) { | |
// Stop recursion if array contains only one element | |
if(array.length <= 1) { | |
return array; | |
} | |
// split in the middle of the array | |
int splitIndex = array.length ~/ 2; |