Skip to content

Instantly share code, notes, and snippets.

View bheeshmar's full-sized avatar

Bheeshmar Redheendran bheeshmar

View GitHub Profile
@bheeshmar
bheeshmar / easter.py
Created April 21, 2019 02:13
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))