advent-of-code/2022/03/README.md

12 lines
354 B
Markdown
Raw Normal View History

2022-12-04 11:10:33 +01:00
# 03
The first part is easily done by using the ascii number of the characters and 2 offsets. The second part I first though we need to find the groups on our own, but (RTFM...) it's just every 3 lines, so it's just a matter of using pythons `set`.
<details>
<summary>Solutions</summary>
<ol>
<li>7746</li>
<li>2604</li>
</ol>
</details>