From f5ef0d8e6f484efbcbbf97c1cd1231941a65c645 Mon Sep 17 00:00:00 2001 From: robbie-hatley Date: Mon, 1 Jan 2024 18:49:25 -0800 Subject: Fixed minor typo in 250-2. --- challenge-250/robbie-hatley/perl/ch-2.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenge-250/robbie-hatley/perl/ch-2.pl b/challenge-250/robbie-hatley/perl/ch-2.pl index 07ab378791..af08afe279 100755 --- a/challenge-250/robbie-hatley/perl/ch-2.pl +++ b/challenge-250/robbie-hatley/perl/ch-2.pl @@ -87,7 +87,7 @@ sub alnum_string_value ($x) { } # What is the maximum "alphanumeric string value" -#of the elements of an array of alphanumeric strings? +# of the elements of an array of alphanumeric strings? sub max_alnum_string_value ($aref) { return max map {alnum_string_value $_} @$aref; } -- cgit