summary refs log tree commit diff homepage
path: root/2019/day04.sh
blob: 6cd264a219bab09c13df47615d507042b0b1ebcd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
IFS=-
read min max
seq "$min" "$max" \
	| grep '^1*2*3*4*5*6*7*8*9*$' \
	| grep -E '00|11|22|33|44|55|66|77|88|99' \
	| wc -l
seq "$min" "$max" \
	| grep '^1*2*3*4*5*6*7*8*9*$' \
	| sed 's/.*/x&x/' \
	| grep -E '[^0]00[^0]|[^1]11[^1]|[^2]22[^2]|[^3]33[^3]|[^4]44[^4]|[^5]55[^5]|[^6]66[^6]|[^7]77[^7]|[^8]88[^8]|[^9]99[^9]' \
	| wc -l
ernsJune McEnroe 2021-01-20Use mtags in source-filterJune McEnroe 2021-01-19Add mtags to generate tags for make and mdocJune McEnroe 2021-01-19Map tags to IDs using only [[:alnum:]-._]June McEnroe 2021-01-19Don't use a pager if reading standard inputJune McEnroe 2021-01-19Support BSD make syntax and match *.amJune McEnroe These don't really go together, but... 2021-01-19Match tab following escaped newline in make assignmentsJune McEnroe Otherwise it ends up going into Shell state. 2021-01-18Allow matching lexers using first input lineJune McEnroe