summary refs log tree commit diff homepage
path: root/2018/day02-2.sh
blob: ef8bcc23eb840fe69d423cdaf72f2c34f9919443 (plain) (blame)
1
2
3
4
5
6
input=$(mktemp)
cat > $input
for i in $(seq $(head -n 1 $input | wc -c)); do
	colrm $i $i < $input | sort | uniq -d
done
rm $input