0
votes
What’s your favorite implementation of producing the fibonacci sequence?
I came across this little beauty the other day:
function f($n)
{
$sqrt5 = pow(5, 0.5);
$gr = (1+$sqrt5)/2;
return floor(0.5+(pow($g, $n)/$sqrt5));
}
…
0
votes
What do you mean by “programming ability”?
What makes the best athlete? Stamina? Strength? Speed? Skill? Is the best swimmer the best pole-vaulter? Is the best archer the best sprinter? Does the best archer care if he can't run 100m in unde …
