diff options
| author | robbie-hatley <Robbie.Hatley@gmail.com> | 2024-01-01 18:49:25 -0800 |
|---|---|---|
| committer | robbie-hatley <Robbie.Hatley@gmail.com> | 2024-01-01 18:49:25 -0800 |
| commit | f5ef0d8e6f484efbcbbf97c1cd1231941a65c645 (patch) | |
| tree | 2741c7426135215be2e9b09add07c7247a553b65 | |
| parent | 44aa730c9ec0c61fa35a035db0fc0c78cc237909 (diff) | |
| download | perlweeklychallenge-club-f5ef0d8e6f484efbcbbf97c1cd1231941a65c645.tar.gz perlweeklychallenge-club-f5ef0d8e6f484efbcbbf97c1cd1231941a65c645.tar.bz2 perlweeklychallenge-club-f5ef0d8e6f484efbcbbf97c1cd1231941a65c645.zip | |
Fixed minor typo in 250-2.
| -rwxr-xr-x | challenge-250/robbie-hatley/perl/ch-2.pl | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
