summaryrefslogtreecommitdiffstats
path: root/2020/day3/README.md
blob: 75737af892f8a29ce4ca23cf57b9ac60942cb646 (plain)
1
2
3
4
5
6
7
8
9
10
11
# day 3

## first part

32 places per row, right 3 and down 1 is

```
idx = (idx + 3) % 32
```

per line but this will _probably_ change for the part 2.