Skip to content

Instantly share code, notes, and snippets.

View keith-ratcliffe's full-sized avatar

Keith Ratcliffe keith-ratcliffe

View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript">
const answers = [];
const url = "https://gist.githubusercontent.com/cfreshman/a7b776506c73284511034e63af1017ee/raw/845966807347a7b857d53294525263408be967ce/wordle-nyt-answers-alphabetical.txt"
fetch(url)
.then((response) => response.text())
.then((textString) => {
const rows = textString.split('\n');