Skip to content

Instantly share code, notes, and snippets.

@proycon
Created June 15, 2017 11:01
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 proycon/8388f299c9368d55121c7dde01465a8b to your computer and use it in GitHub Desktop.
Save proycon/8388f299c9368d55121c7dde01465a8b to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
#possible range of real ages based on physical observation on sightings
#in Erasmus gebouw (broad estimate)
possiblerealages_guess = range(24,33)
#possible real ages based on cryptic 1000 age with unknown base
possiblerealages_decoded = [ base**3 for base in range(0,15) ]
#insersection of the two
possiblerealages = set(possiblerealages_guess) & set(possiblerealages_decoded)
print("Wessel's real age:", sorted(possiblerealages))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment