aoc-2015/jour08/jour8.pl

35 lines
626 B
Perl
Raw Normal View History

2021-06-04 08:55:59 +00:00
#!usr/bin/perl
2021-06-04 08:34:27 +00:00
use strict;
use warnings;
my $file = 'input';
my $total = 0;
my $tmp;
open(FH, '<:encoding(UTF-8)', $file) or die $!;
print "Traitement de la première partie…\n";
while (<FH>) {
$tmp = eval $_;
chomp($_);
chomp($tmp);
$total = $total + length($_) - length($tmp);
}
2021-06-04 08:55:59 +00:00
print "Le total est : $total.\n";
seek FH, 0, 0;
$total = 0;
print "Traitement de la deuxième partie…\n";
while (<FH>) {
$tmp = $_;
$tmp =~ s/\\/\\\\/ig;
$tmp =~ s/"/\\"/ig;
chomp($tmp);
chomp($_);
$total = $total + length($tmp) + 2 - length($_);
}
2021-06-04 08:34:27 +00:00
print "Le total est : $total.\n";
2021-06-04 08:55:59 +00:00
close(FH);