Filed in: Euler.4 · Modified on : Wed, 06 Feb 08
No smart tricks here. Just brute force goodness.
However, I did learn something useful. Apparently list[::-1] reverses a list (not in place). list[:] would be a copy, and the extra :-1 emoticony thing is extended slice notation for "step by -1" (i.e., backwards). Radical.