This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Function to find the minimum, maximum, and sort the array | |
function processArray($numbers) { | |
$min = min($numbers); | |
$max = max($numbers); | |
sort($numbers); | |
return [ | |
'min' => $min, | |
'max' => $max, | |
'sorted' => $numbers |