Skip to content
Snippets Groups Projects
Unverified Commit 0f204eeb authored by Aya Morisawa's avatar Aya Morisawa
Browse files

Remove unused code

parent ba056060
No related branches found
No related tags found
No related merge requests found
/**
* 中央値を求めます
* @param samples サンプル
*/
export default function(samples) {
if (!samples.length) return 0;
const numbers = samples.slice(0).sort((a, b) => a - b);
const middle = Math.floor(numbers.length / 2);
const isEven = numbers.length % 2 === 0;
return isEven ? (numbers[middle] + numbers[middle - 1]) / 2 : numbers[middle];
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment