This repository has been archived on 2026-08-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Advent_of_code/2020/day6.ahk
T

6 lines
265 B
AutoHotkey

for _, group in StrSplit(FileOpen("data6.txt","R").Read(),"`r`n`r`n")
Loop 26 {
p1 += !!RegExMatch(group,chr(96 + A_Index))
p2 += !!RegExMatch(group,"s)(" chr(96 + A_Index) ".*){" StrSplit(group,"`n").Length() "}")
}
Msgbox % "Part 1: " p1 "`nPart 2: " p2