a
Size: a a a
a
MS
АЯ
function biggest(array $elements, int $max = PHP_INT_MIN)
{
$first = array_shift($elements);
if ($first > $max) {
return biggest($elements, $first);
}
return $max;
}
SB
DS
DS
АЯ
АЯ
DS
АЯ
АЯ
DS
АЯ
YK
function biggest(array $elements, int $max = PHP_INT_MIN)
{
$first = array_shift($elements);
if ($first > $max) {
return biggest($elements, $first);
}
return $max;
}
A
イС
DS
a