Created
February 26, 2020 16:42
-
-
Save torressam333/cf512a48fc75b78a49ba53a0ed2697ca to your computer and use it in GitHub Desktop.
Hackerrank Mini-Max-Sum Solution
This file contains 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 | |
//My Solution | |
// Complete the miniMaxSum function below. | |
function miniMaxSum($arr) { | |
sort($arr); | |
for($i = 0; $i <= count($arr); $i++){ | |
$minSum = array_sum($arr) - $arr[4]; | |
$maxSum = array_sum($arr) - $arr[0]; | |
} | |
print($minSum . " " . $maxSum); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment