Skip to content

Instantly share code, notes, and snippets.

@vault
Created November 15, 2010 03:40
Show Gist options
  • Save vault/700005 to your computer and use it in GitHub Desktop.
Save vault/700005 to your computer and use it in GitHub Desktop.
primes = {}
def prime(x):
if x in primes
return primes[x]
else
y = calculatePrime(x)
primes[x] = y
return y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment