├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt ├── simulate.py ├── solver.py ├── tests.py └── visualize.py /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | __pycache__/ 3 | .idea/ 4 | output.cast -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carbocarde/battleship/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carbocarde/battleship/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carbocarde/battleship/HEAD/requirements.txt -------------------------------------------------------------------------------- /simulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carbocarde/battleship/HEAD/simulate.py -------------------------------------------------------------------------------- /solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carbocarde/battleship/HEAD/solver.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carbocarde/battleship/HEAD/tests.py -------------------------------------------------------------------------------- /visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Carbocarde/battleship/HEAD/visualize.py --------------------------------------------------------------------------------