Skip to content

Instantly share code, notes, and snippets.

View jhoneycutt's full-sized avatar
😐

Jon Honeycutt jhoneycutt

😐
View GitHub Profile

Keybase proof

I hereby claim:

  • I am jhoneycutt on github.
  • I am jhoneycutt (https://keybase.io/jhoneycutt) on keybase.
  • I have a public key whose fingerprint is E6E6 46CD D416 1A15 AAC5 B2D5 DFB3 FFE1 7FA8 BC1D

To claim this, I am signing this object:

@jhoneycutt
jhoneycutt / letter-boxed-solver.py
Created October 13, 2023 08:06
NY Times letter-boxed solver
import json
import sys
import time
# Lexicon must be a JSON array of strings.
LEXICON_PATH = "lexicon.json"
if len(sys.argv) != 5:
name = sys.argv[0]
print(f"Usage : {name} <side 1> <side 2> <side 3> <side 4>")