mirror of
https://github.com/cupcakearmy/advent-of-code.git
synced 2025-12-13 21:34:58 +00:00
6
This commit is contained in:
11
2021/06/README.md
Normal file
11
2021/06/README.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# 06
|
||||
|
||||
The naive way to do it would be to keep a list. A way more performant ways way to do this is just having an array with 9 entries (0-8) which count the states of the fish. Then you actually just rotate the array each day and add the `0` entry to the `6` additionally.
|
||||
|
||||
<details>
|
||||
<summary>Solutions</summary>
|
||||
<ol>
|
||||
<li>352195</li>
|
||||
<li>1600306001288</li>
|
||||
</ol>
|
||||
</details>
|
||||
Reference in New Issue
Block a user