aoc2015

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

commit 95d8b87f063f5e11a957d1aebc5c165492dd09ae
parent 5f83de19e59cae7a3e622289f30ad8e8b4ec2137
Author: Samir Parikh <noreply@samirparikh.com>
Date:   Sat, 22 Oct 2022 16:57:33 +0000

cleanup code for day06

Diffstat:
Mday06/day06-1.pl | 1-
Mday06/day06-2.pl | 1-
2 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/day06/day06-1.pl b/day06/day06-1.pl @@ -4,7 +4,6 @@ use strict; use warnings; use v5.32; -use lib '.'; @ARGV = "input" unless @ARGV; chomp( my $input = do { local $/; <> } ); diff --git a/day06/day06-2.pl b/day06/day06-2.pl @@ -4,7 +4,6 @@ use strict; use warnings; use v5.32; -use lib '.'; @ARGV = "input" unless @ARGV; chomp( my $input = do { local $/; <> } );