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/1.dot

17 lines
212 B
Plaintext

digraph D {
start [shape=box]
end [shape=box]
A [shape=box]
b [shape=box]
c [shape=box]
d [shape=box]
start -> {A, b}
end -> {A, b}
A -> {c, b, end}
A -> {start}
b -> {d, end}
b -> {start, A}
c -> {A}
d -> {b}
}