A simple hangman solver created using python. The algorithm works by going through the list of words and finding the frequency of letters from the list of words. From this information, the order of ...
Drawing inspiration from other Hangman solvers, I integrated several strategies to approach solving the Hangman problem. Before any guessing, I update a dictionary of possble words from the training ...