You are viewing a single comment's thread. Return to all comments →
typescript
function miniMaxSum(arr: number[]): void { arr.sort(); const total: number = arr.reduce((a: number,c: number):number => (a + c), 0); console.log(`${total - arr[arr.length - 1]} ${total - arr[0]}`); }
Seems like cookies are disabled on this browser, please enable them to open this website
Mini-Max Sum
You are viewing a single comment's thread. Return to all comments →
typescript