Solving Wordle with uv and Python Packages
2025-07-07
The author previously wrote a Sudoku solver using Poetry's dependency resolver and now attempts to solve Wordle using the more advanced uv. The article details how to translate the Wordle problem into a Python package dependency problem, cleverly using uv's dependency resolver to find the solution. By creating a series of packages representing letter positions and feedback, and setting dependencies between them, the author successfully solves Wordle using uv.
Read more
Development