Search Results

1
vote

Your favourite algorithm and the lesson it taught you.

The iterative algorithm for Fibonacci, because for me it nailed down the fact that the most elegant code (in this case, the recursive version) is not necessarily the most efficient. To elab …
-2
votes

Your favourite algorithm and the lesson it taught you.

You know that fibonacci has a closed form solution that allows direct computation of the result in a fixed number of steps, right? Namely, (phin - (1 - phi)n) / sqrt(5). It always st …
61
votes

What is the single most effective thing you did to improve your programming skills?

I'm a big fan of the "learn one programming language every year" system. One year gives you enough time to get past the "okay, I know the syntax, so now I know the language" bias, and for …