Wordle Solver is a program that will help players obtain the winning word quicker than they would on their own. Use our program and follow the instructions to win the game in less iterations than a regular player!
Coded in Python by Shawn Pradeep, as seen in ACM Spring 2023 GBM #5.
Wordle Solver requires a few Python libraries to run:
Install Python: https://www.python.org/downloads/
If you type the following command and receive a similar output, you've succesfully installed Python:
python --version
Python 3.10.6
Install pip:
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
If you type the following command and receive a similar output, you've succesfully installed pip:
pip --version
pip 23.0.1
Additional Dependencies:
pip install pandas
pip install jupyter