Please answer this simple SPAM challenge: max(five, four)? (Example: nine)
here is an elegant recursive solution<?php function gcd($a,$b) { return ($a % $b) ? gcd($b,$a % $b) : $b;}?>
<< Back to user notes page