Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for [old] The Most Numbers by mozurin
"use strict";
function mostNumbers()
{
return (
arguments.length == 0? 0 :
Math.max.apply(Math, arguments) - Math.min.apply(Math, arguments)
);
}
June 25, 2018
Comments: