aoc2015

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

commit f77173d0bcce415132534c3b9b8414f7a67805c4
parent 6da6ce941393c3b728bcddd30bc13740b9884129
Author: Samir Parikh <noreply@samirparikh.com>
Date:   Fri, 14 Oct 2022 14:50:44 +0000

update README

Diffstat:
MREADME.md | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md @@ -1,6 +1,8 @@ -This repository contains my attempt to solve the 2015 edition of the [Advent of Code](https://adventofcode.com/2015) challenge using Perl 5. +This repository contains my attempt to solve the 2015 edition of the [Advent of Code](https://adventofcode.com/2015) +challenge using Perl 5. -Note: For this set of puzzles, I decided to read the entire input file into a scalar variable (i.e. slurp the file). To do this, you'll see the following near the beginning of each file: +Note: For this set of puzzles, I decided to read the entire input file into a scalar variable (i.e. slurp the file). +To do this, you'll see the following near the beginning of each file: chomp( my $input = do { local $/; <> } );