To my eye, the list comprehension version is reasonable.
But I like the imperative style better: it uses the most basic language features and at a glance you can tell what it does.
My favourite is the dictionary comprehension version, it's the shortest but still conveys clearly what it's doing.
http://pastebin.com/8q46bK0v
To my eye, the list comprehension version is reasonable. But I like the imperative style better: it uses the most basic language features and at a glance you can tell what it does. My favourite is the dictionary comprehension version, it's the shortest but still conveys clearly what it's doing.