Skip to content

Instantly share code, notes, and snippets.

@ken-master
Created February 23, 2016 14:34
Show Gist options
  • Save ken-master/fc865f91a5456118b32c to your computer and use it in GitHub Desktop.
Save ken-master/fc865f91a5456118b32c to your computer and use it in GitHub Desktop.
Peak
<?php
function solution($A) {
$i = 0;
$k = 0;
$arr_count = count($A);
for( $j = 0;$j<=$arr_count;$j++ ){
$k = $A[$i];
if( $k >= 0 && $k < $arr_count ){
if($A[$k] == -1 ){
return $i;
break;
}
$i=$k;
}else{
return 0;
}
}
return $i;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment