Skip to content

Commit 8ad5e0d

Browse files
committed
comment
1 parent 22a76f4 commit 8ad5e0d

File tree

1 file changed

+37
-1
lines changed

1 file changed

+37
-1
lines changed

2024/Day14/README.md

+37-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,40 @@ I’d bet many of us anticipated some `least common multiple` or `Chinese Remain
1111

1212
The expected output wasn’t clearly specified — other than the fact that it should resemble a Christmas tree. I wrote a plot function to display the robot’s locations on the screen, dumped everything into a long file, and manually inspected it in my editor.
1313

14-
Later, to automate this process, decided to search for a longer horizontal '####' pattern in the output.
14+
Later, to automate this process, decided to search for a longer horizontal '####' pattern in the output:
15+
16+
```
17+
###############################
18+
# # # #
19+
# # #
20+
# # #
21+
# # # #
22+
# # #
23+
# ### # #
24+
# ##### #
25+
# # ####### #
26+
# # ######### # #
27+
# ##### #
28+
# # ####### #
29+
# ######### #
30+
# ########### #
31+
# ############# # # #
32+
# ######### #
33+
# # ########### # #
34+
# # ############# #
35+
# ############### # # #
36+
# ################# # #
37+
# ############# #
38+
# ############### #
39+
# ################# #
40+
# ################### #
41+
# # ##################### #
42+
# ### #
43+
# ### # #
44+
# # ### # #
45+
# # #
46+
# # #
47+
# # #
48+
# # # #
49+
# ###############################
50+
```

0 commit comments

Comments
 (0)