aoc2015

Advent of Code 2015 solutions in Perl.
git clone git://git.samirparikh.com/aoc2015
Log | Files | Refs | README

commit 6da6ce941393c3b728bcddd30bc13740b9884129
parent 1ead20b33b7ccf0ceb10caef8e4f713e73dcfce6
Author: Samir Parikh <noreply@samirparikh.com>
Date:   Fri, 14 Oct 2022 14:49:24 +0000

remove comment from day01 solution

Diffstat:
Mday01/day01.pl | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/day01/day01.pl b/day01/day01.pl @@ -7,7 +7,6 @@ use v5.32; @ARGV = "input" unless @ARGV; -# see https://www.perl.com/article/21/2013/4/21/Read-an-entire-file-into-a-string/ chomp( my $input = do { local $/; <> } ); my @instructions = split //, $input;