aboutsummaryrefslogtreecommitdiff
path: root/2020/03/puzzle-1.awk
blob: 3eac2baf99dcf677dc471d8c644f482d770bcd58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env -S awk -f

BEGIN { x = 1 }
{
	len = split($0, obs, "")

	if (x > len)
		x -= len
	if (obs[x] == "#")
		count++

	x += 3
}
END  { print count }