int* MySort(int* arr, int arrLen, int* returnSize ) { // write code here if((arrLen == 0)||(arrLen == 1)) { *returnSize = arrLen; return arr; } int i,j; for(j=0...