summaryrefslogtreecommitdiffstats
path: root/2020/day6/declaration.pl
diff options
context:
space:
mode:
authorYigit Sever2021-12-13 10:38:11 +0300
committerYigit Sever2021-12-13 10:38:11 +0300
commit74b27ccca31bb757c737dd7fdc02f513f57561b2 (patch)
treee27db4cd0873c81a53d32277446d926d176304e0 /2020/day6/declaration.pl
parent3919f90cfbfbba26c8e39f979280649f5e08aea8 (diff)
parentac8125750abed263619da4cc6d653bb5ab76f007 (diff)
downloadaoc-74b27ccca31bb757c737dd7fdc02f513f57561b2.tar.gz
aoc-74b27ccca31bb757c737dd7fdc02f513f57561b2.tar.bz2
aoc-74b27ccca31bb757c737dd7fdc02f513f57561b2.zip
Merge remote-tracking branch 'origin/main'
Diffstat (limited to '2020/day6/declaration.pl')
-rw-r--r--2020/day6/declaration.pl30
1 files changed, 30 insertions, 0 deletions
diff --git a/2020/day6/declaration.pl b/2020/day6/declaration.pl
new file mode 100644
index 0000000..7c87461
--- /dev/null
+++ b/2020/day6/declaration.pl
@@ -0,0 +1,30 @@
1use strict;
2use warnings;
3use Smart::Comments;
4use DDP;
5use List::Util 'sum';
6
7my $batch;
8{
9 local $/;
10 open my $fh, '<', "input" or die "no input present, $!";
11 $batch = <$fh>;
12}
13
14my $total_yes = 0;
15
16while ($batch =~ m/((?:[^\n][\n]?)+)/gm ) {
17 my $group_answers = $1;
18 chomp $group_answers;
19
20 my %counts;
21 while ($group_answers =~ m/^(\w+)$/mg) {
22 my $person_answers = $1;
23 $counts{$_} = 1 for split(//, $person_answers);
24 }
25 # p %counts;
26
27 $total_yes += sum values %counts
28}
29
30print $total_yes;