python app to solve the Nqueens problem
Build docker images
docker-compose up --buildUsage :
app.py <N> [options]Options:
-s Store the results for the given N in the database
Solve the nqueens problem for N = 5
docker-compose exec src python app.py 5Solve the nqueens problem for N = 5 and store the results
docker-compose exec src python app.py 5 -sRun automatic tests
docker-compose exec src pytest -s