Skip to content

Instantly share code, notes, and snippets.

View iancward's full-sized avatar

Ian C. Ward iancward

  • The Walt Disney Company
  • Orlando, FL
  • X @icberg7
View GitHub Profile
@iancward
iancward / five_letter_words_by_position.py
Created January 24, 2022 00:05
Python script to fetch a list of five letter words, and count letters by frequency at letter position. Useful for finding a start letter for Wordle.
#!/usr/bin/env python3
# stdlib
import re
import string
from collections import Counter
from operator import itemgetter
# third party
import requests
@iancward
iancward / five_letter_words.py
Last active October 26, 2023 11:35
Python script to fetch a list of five letter words, and count letters by frequency. Useful for finding a start letter for Wordle.
#!/usr/bin/env python3
# stdlib
import re
from collections import Counter
from operator import itemgetter
# third party
import requests