aoc/2022/day_05/sample.txt

17 lines
257 B
Plaintext
Raw Normal View History

2023-12-02 01:01:55 +00:00
[D]
[N] [C]
[Z] [M] [P]
1 2 3
move 1 from 2 to 1
move 3 from 1 to 3
move 2 from 2 to 1
move 1 from 1 to 2
// convention: End of Array is
["", "D", ""], ["N", "C", ""], ["Z", "M", "P"]
->
["Z", "N", ""], ["M", "C", "D"]. ["P", "", ""]