From 68a2b35efa874565bf7981172e2857d32351e99b Mon Sep 17 00:00:00 2001 From: KG Date: Sat, 15 Jun 2024 17:45:55 -0500 Subject: [PATCH] No peeking --- index.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/index.html b/index.html index 5de15bd..fbaa6aa 100644 --- a/index.html +++ b/index.html @@ -777,6 +777,11 @@

Yesterday's answers

var puzzle = allpuzzles.at(seed % 131071 % numpuzzles) var start = Math.floor(seed / numpuzzles) % 7; + if (date.getFullYear() == 2024 && date.getMonth() == 5 && date.getDate() == 16) { + puzzle = "fathsre"; + start = 1; + } + return puzzle.slice(start) + puzzle.slice(0, start); }