Skip to content

Instantly share code, notes, and snippets.

@jacobch
Created February 21, 2011 03:50
Show Gist options
  • Save jacobch/836637 to your computer and use it in GitHub Desktop.
Save jacobch/836637 to your computer and use it in GitHub Desktop.
function equi ( $A ) {
$count = count($A);
$total = array_sum($A);
$right = $total;
$left = 0;
for($i = 0; $i < $count; $i++) {
$right -= $A[$i];
if ($left == $right)
return $i;
$left += $A[$i];
}
return -1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment