function getMax(arr){
for(let i=arr[arr.length-1];i>0;i--){
for(let j=0;j<arr.length-i-1;j++){
if(arr[j]>arr[j+1]){
let temp;
temp=arr[j];
arr[j]=arr[j+1];
arr[j+1]=temp;
}
}
}
return arr.pop()-arr.shift();
}
console.log(getMax([2,3,7,20]))