Created
April 21, 2019 02:13
-
-
Save bheeshmar/fb1d9cf8973c85415c40c7d8fe2025fd to your computer and use it in GitHub Desktop.
Reveal the location of the missing egg!
This file contains 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
# To get the clue, enter the correct seed. | |
# If you don't know it, we know where you live! | |
import random | |
secret = # guess me | |
random.seed(secret) | |
words = "longing rusted furnace daybreak seventeen benign nine homecoming cash one freight car bubble flush calculator smash with book blow invincible".split(' ') | |
code = random.sample(words, 3) | |
print('Clue: ' + ' '.join(code)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment