You are viewing a single comment's thread. Return to all comments →
Can anyone explain why this doesn't work?
function findMedian(arr: number[]): number { let sorted = arr.sort(); const mid = Math.floor(arr.length / 2); return sorted[mid]; }
Seems like cookies are disabled on this browser, please enable them to open this website
Find the Median
You are viewing a single comment's thread. Return to all comments →
Can anyone explain why this doesn't work?