You are viewing a single comment's thread. Return to all comments →
**Solutions In PHP : **
*Using Built In Functions :* function miniMaxSum(array $arr) { // total sum `$totalSum = array_sum($`arr); // mawSum & minSum vars `$maxSum = $`totalSum - min($arr); `$minSum = $`totalSum - max($arr); // print values print $minSum; print " "; print $maxSum; }
Seems like cookies are disabled on this browser, please enable them to open this website
Mini-Max Sum
You are viewing a single comment's thread. Return to all comments →
**Solutions In PHP : **