Search Results

41
votes

What is the best UI you’ve ever used?

Quicksilver: It's fast, intuitive, and very adaptable. It allows for so many tasks to get done quickly and simply. …
0
votes

Code Golf: Factorials

def f(n): return reduce(lambda x,y: x*y,range(1,n+1)) …