From 0cd5bb8fef5095e6f5fc3cd2986236eb68422edd Mon Sep 17 00:00:00 2001 From: Matthew Neleigh Date: Tue, 7 May 2024 00:52:16 -0400 Subject: modified: challenge-268/mattneleigh/perl/ch-2.pl --- challenge-268/mattneleigh/perl/ch-2.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenge-268/mattneleigh/perl/ch-2.pl b/challenge-268/mattneleigh/perl/ch-2.pl index b9173990bc..e1a5790748 100755 --- a/challenge-268/mattneleigh/perl/ch-2.pl +++ b/challenge-268/mattneleigh/perl/ch-2.pl @@ -45,7 +45,7 @@ sub transposed_sort{ my @rearranged; while(@ints){ - # Grab a the first two remaining elements from the + # Grab the first two remaining elements from the # sorted argument list, and add them to the # rearranged list in reversed order push(@rearranged, (splice(@ints, 0, 2))[1, 0]); -- cgit