diff options
Diffstat (limited to '2020/day3/README.md')
-rw-r--r-- | 2020/day3/README.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2020/day3/README.md b/2020/day3/README.md new file mode 100644 index 0000000..75737af --- /dev/null +++ b/2020/day3/README.md | |||
@@ -0,0 +1,11 @@ | |||
1 | # day 3 | ||
2 | |||
3 | ## first part | ||
4 | |||
5 | 32 places per row, right 3 and down 1 is | ||
6 | |||
7 | ``` | ||
8 | idx = (idx + 3) % 32 | ||
9 | ``` | ||
10 | |||
11 | per line but this will _probably_ change for the part 2. | ||