100. Třídění
Setřiďte pole čísel.
Výstupem
programu je pole setříděné od nejmenšího po největší.
function main(arg) { return arg.sort((a, b)=>a-b); }