Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 353 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 353 Bytes

15-puzzle

Play

stateDiagram

a: Solved (a)
b: Not Solved (b)
c: Swapping (c)
d: Shuffling (d)
e: Solving (e)

state c1 <<choice>>

a --> d: beginShuffle
d --> b: endShuffle

b --> c: beginSwap
c --> c1: endSwap

c1 --> b: not solved
c1 --> a: solved

b --> e: beginSolve
e --> a: endSolve
Loading