This repository contains some analysis of possible nerdle answers. Here's a quick overview:
nerdle.py
contains code to generate all possible nerdle answers.all_answers.txt
contains those generated answers.analysis.ipynb
contains analysis of those generated answers, including various frequency plots, and information on the likelyhood of different operator combinations and number lengths appearing.plots/*
are plots from the notebook.
The x
s represent digits, and the percentage is the percentage of all possible answers in that format.
xx+xx=xx
: 18.28%xx-xx=xx
: 18.28%xx-x*x=x
: 4.01%xx-x-x=x
: 3.89%xx/x-x=x
: 3.83%x*x+x=xx
: 3.68%x+x*x=xx
: 3.68%x+x+x=xx
: 3.64%xxx/xx=x
: 3.46%xxx/x=xx
: 3.46%
Take a look at analysis.ipynb
for more!