https://github.com/jacknewman12/marioorigamisolver
https://github.com/jacknewman12/marioorigamisolver
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jacknewman12/marioorigamisolver
- Owner: JackNewman12
- License: mit
- Created: 2020-07-19T11:50:04.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-23T03:42:42.000Z (almost 5 years ago)
- Last Synced: 2025-01-13T21:37:00.482Z (4 months ago)
- Language: Python
- Size: 185 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MarioOrigamiSolver
Basic and hacky script to solve Paper Mario Origami Battle Puzzles

```
# python3 Solver.py
Enter board:
0123456789AB
000010000000
000010000000
001010010000
000101001000
Solving Board:
[[0 0 0 0 1 0 0 0 0 0 0 0]
[0 0 0 0 1 0 0 0 0 0 0 0]
[0 0 1 0 1 0 0 1 0 0 0 0]
[0 0 0 1 0 1 0 0 1 0 0 0]]
Finished: 0.0608370304107666 seconds
Move Row 0 AntiClockwise by 1
Move Col 1 Outwards by 2
Final Board State:
[[0 0 0 0 1 0 0 0 0 0 0 0]
[0 0 0 0 1 0 0 0 0 0 0 0]
[0 1 1 0 1 0 0 0 0 0 0 0]
[0 1 1 0 1 0 0 0 0 0 0 0]]
```