This repository has been archived on 2022-03-09. You can view files and clone it, but cannot push or open issues or pull requests.
aoc2021/day12/examples/3.dot

29 lines
440 B
Plaintext

digraph D {
start [shape=box]
end [shape=box]
fs [shape=box]
he [shape=box]
DX [shape=box]
pj [shape=box]
zg [shape=box]
sl [shape=box]
RW [shape=box]
WI [shape=box]
start -> {DX, pj, RW}
end -> {zg}
end -> {fs}
fs -> {end, he, DX}
fs -> {pj}
he -> {DX, WI}
he -> {fs, pj, RW, zg}
DX -> {he, start, pj, fs}
pj -> {DX, he, RW, fs}
pj -> {zg, start}
zg -> {sl, pj, RW, he}
zg -> {end}
sl -> {zg}
RW -> {he}
RW -> {pj, zg, start}
WI -> {he}
}