![php](https://habrastorage.org/r/w120/files/373/e8b/dd3/373e8bdd3cb644d3bbeba47d34d1876d.png)
PHP
4
Вклад в тег
$cmp = function ($a, $b) {
if ($a == $b) {
return 0;
}
return ($a < $b) ? -1 : 1;
};
for ($i = 0; $i < $count; $i++) {
usort($arr, $cmp);
}
Time: 0.074096918106079
Time: 0.074237108230591