Skip to content

Instantly share code, notes, and snippets.

@stoimen
Created October 16, 2015 08:23
Show Gist options
  • Save stoimen/d2d44986bb70a19bc72c to your computer and use it in GitHub Desktop.
Save stoimen/d2d44986bb70a19bc72c 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 minimum($list)
{
$len = count($list);
$minimum = $list[0];
for ($i = 1; $i < $len; $i++) {
if ($minimum > $list[$i]) {
$minimum = $list[$i];
}
}
return $minimum;
}
// 1
echo minimum($list);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment