Skip to content

Instantly share code, notes, and snippets.

@torressam333
Created February 26, 2020 16:42
Show Gist options
  • Save torressam333/cf512a48fc75b78a49ba53a0ed2697ca to your computer and use it in GitHub Desktop.
Save torressam333/cf512a48fc75b78a49ba53a0ed2697ca to your computer and use it in GitHub Desktop.
Hackerrank Mini-Max-Sum Solution
<?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