├── .gitignore ├── LICENSE ├── README.md ├── absurdle-guess.txt ├── absurdle_challenge_bot.py ├── absurdle_solver.py ├── hello-wordle-all.txt ├── hello-wordle-secret.txt ├── hello_wordle_bot.py ├── hello_wordle_bot_vis.py ├── hello_wordle_sim.py ├── quordle-bot.py ├── quordle-guess.txt ├── survivle_all.txt ├── survivle_bot.py ├── survivle_secret.txt ├── wordle.py ├── wordle_tree.py ├── words-all.txt └── words-guess.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamescomputersplay/wordle/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamescomputersplay/wordle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamescomputersplay/wordle/HEAD/README.md -------------------------------------------------------------------------------- /absurdle-guess.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamescomputersplay/wordle/HEAD/absurdle-guess.txt -------------------------------------------------------------------------------- /absurdle_challenge_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamescomputersplay/wordle/HEAD/absurdle_challenge_bot.py -------------------------------------------------------------------------------- /absurdle_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamescomputersplay/wordle/HEAD/absurdle_solver.py -------------------------------------------------------------------------------- /hello-wordle-all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamescomputersplay/wordle/HEAD/hello-wordle-all.txt -------------------------------------------------------------------------------- /hello-wordle-secret.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamescomputersplay/wordle/HEAD/hello-wordle-secret.txt -------------------------------------------------------------------------------- /hello_wordle_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamescomputersplay/wordle/HEAD/hello_wordle_bot.py -------------------------------------------------------------------------------- /hello_wordle_bot_vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamescomputersplay/wordle/HEAD/hello_wordle_bot_vis.py -------------------------------------------------------------------------------- /hello_wordle_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamescomputersplay/wordle/HEAD/hello_wordle_sim.py -------------------------------------------------------------------------------- /quordle-bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamescomputersplay/wordle/HEAD/quordle-bot.py -------------------------------------------------------------------------------- /quordle-guess.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamescomputersplay/wordle/HEAD/quordle-guess.txt -------------------------------------------------------------------------------- /survivle_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamescomputersplay/wordle/HEAD/survivle_all.txt -------------------------------------------------------------------------------- /survivle_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamescomputersplay/wordle/HEAD/survivle_bot.py -------------------------------------------------------------------------------- /survivle_secret.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamescomputersplay/wordle/HEAD/survivle_secret.txt -------------------------------------------------------------------------------- /wordle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamescomputersplay/wordle/HEAD/wordle.py -------------------------------------------------------------------------------- /wordle_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamescomputersplay/wordle/HEAD/wordle_tree.py -------------------------------------------------------------------------------- /words-all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamescomputersplay/wordle/HEAD/words-all.txt -------------------------------------------------------------------------------- /words-guess.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamescomputersplay/wordle/HEAD/words-guess.txt --------------------------------------------------------------------------------