aoc2015

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

commit 3f065de3db9ae492e37d8b173b72259bc8b5e3c6
parent 09b3f6d5e48cef3dd433931c6ad47852d326b1fb
Author: Samir Parikh <noreply@samirparikh.com>
Date:   Fri, 28 Oct 2022 21:57:01 +0000

code cleanup

Diffstat:
Mday10/day10.pl | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/day10/day10.pl b/day10/day10.pl @@ -23,7 +23,7 @@ sub next_string { # this matches for any number (.) followed by zero or more occurrences (*) of # itself using a back reference (\2). # the capture variable $2 represents the number. The length of $1 represents -# the number of tims that number was captured. To see how it works, uncomment +# the number of times that number was captured. To see how it works, uncomment # the following line: # say length $1, " ", $2, "s"; # the \G anchor can be used to start the next match on the same string where the