Skip to content

Instantly share code, notes, and snippets.

@klen
Created May 20, 2013 06:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save klen/5610667 to your computer and use it in GitHub Desktop.
Save klen/5610667 to your computer and use it in GitHub Desktop.
from itertools import product
print sum(1 for a, b in product(map(sum, product(range(10), repeat=3)), repeat=2) if a == b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment