๐
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]; |
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 | |
// Complete the plusMinus function below. | |
function plusMinus($arr) { | |
//Get total index in array | |
$totalCount = count($arr); | |
//Initialize values to zero "score" | |
$pos = 0; | |
$neg = 0; | |
$zero = 0; |
NewerOlder