On Wed, 02 May 2007 15:03:24 -0700, Tobiah wrote: > > >>> elegant_solution([1,2,3,4,5,6,7,8,9,10]) > [[1, 2], [3, 4], [5, 6], [7, 8], [9, 10]]
Wow! That's impressive. What version of Python are you using? When I try it, I get this: >>> elegant_solution([1,2,3,4,5,6,7,8,9,10]) Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'elegant_solution' is not defined -- Steven. -- http://mail.python.org/mailman/listinfo/python-list