Skip to content

Instantly share code, notes, and snippets.

@bheeshmar
Created April 21, 2019 02: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 bheeshmar/fb1d9cf8973c85415c40c7d8fe2025fd to your computer and use it in GitHub Desktop.
Save bheeshmar/fb1d9cf8973c85415c40c7d8fe2025fd to your computer and use it in GitHub Desktop.
Reveal the location of the missing egg!
# 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