Created
June 15, 2017 11:01
-
-
Save proycon/8388f299c9368d55121c7dde01465a8b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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