/AnagramsSolver

Finds words that appear in the dictionary when given 6 characters.

Primary LanguagePythonApache License 2.0Apache-2.0

anagrams-solver

this python app will find every possible combination and permutation (power sets) of words in the dictionary given any 6 letters

MacOS:

install virtualenv

python -m pip install --user virtualenv

create python virtual environment

python -m venv env

activate virtual environment

source env/bin/activate

verify

which python

install modules

pip install enchant

run anagrams solver
make sure default python symlink is mapped to python3 (else use python3)

python app.py

deactivate environment

deactivate