Voting

: max(five, four)?
(Example: nine)

The Note You're Voting On

bigkm1 at gmail dot com
18 years ago
here is an elegant recursive solution
<?php

function gcd($a,$b) {
return (
$a % $b) ? gcd($b,$a % $b) : $b;
}

?>

<< Back to user notes page

To Top