Skip to content

Instantly share code, notes, and snippets.

@stoimen
Created October 16, 2015 08:25
Show Gist options
  • Save stoimen/fff5cb54c413ca332ffb to your computer and use it in GitHub Desktop.
Save stoimen/fff5cb54c413ca332ffb to your computer and use it in GitHub Desktop.
<?php
$list = array(3,4,2,5,6,7,8,2,5,1,4,4,6);
function maximum($list)
{
$len = count($list);
$maximum = $list[0];
for ($i = 1; $i &lt; $len; $i++) {
if ($maximum &lt; $list[$i]) {
$maximum = $list[$i];
}
}
return $maximum;
}
// 8
echo maximum($list);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment