summaryrefslogtreecommitdiffstats
path: root/2020/day3/README.md
diff options
context:
space:
mode:
authorYigit Sever2021-12-12 01:24:32 +0300
committerYigit Sever2021-12-12 01:24:32 +0300
commit4bb6f8d06c0e384f3394012b1d48da58ed28cc5e (patch)
treed6478c85c0488a1059567ccd2882cb10039c2546 /2020/day3/README.md
parentae3853b6e8ab02023ccd74baac6dc177b1ee879a (diff)
downloadaoc-4bb6f8d06c0e384f3394012b1d48da58ed28cc5e.tar.gz
aoc-4bb6f8d06c0e384f3394012b1d48da58ed28cc5e.tar.bz2
aoc-4bb6f8d06c0e384f3394012b1d48da58ed28cc5e.zip
2020, tracking
Diffstat (limited to '2020/day3/README.md')
-rw-r--r--2020/day3/README.md11
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
532 places per row, right 3 and down 1 is
6
7```
8idx = (idx + 3) % 32
9```
10
11per line but this will _probably_ change for the part 2.