diff options
| author | rir <rirans@comcast.net> | 2025-05-23 00:13:56 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-23 00:13:56 -0400 |
| commit | 1364cc899a4c6792fc8c037933d858fef2cc4b83 (patch) | |
| tree | 3ff43a5fb502c678e3621627473e67e43cd128f2 | |
| parent | fff6173275bbbcea87577e59b316889bc3ed2660 (diff) | |
| parent | d9a8a0d7aba084dc687dd97473f8739db9387b5c (diff) | |
| download | perlweeklychallenge-club-1364cc899a4c6792fc8c037933d858fef2cc4b83.tar.gz perlweeklychallenge-club-1364cc899a4c6792fc8c037933d858fef2cc4b83.tar.bz2 perlweeklychallenge-club-1364cc899a4c6792fc8c037933d858fef2cc4b83.zip | |
Merge branch 'manwar:master' into work
124 files changed, 3580 insertions, 422 deletions
diff --git a/challenge-321/matthias-muth/README.md b/challenge-321/matthias-muth/README.md index 45ded22b4b..a00f1d2dc0 100644 --- a/challenge-321/matthias-muth/README.md +++ b/challenge-321/matthias-muth/README.md @@ -54,20 +54,33 @@ I think that the easiest way to do this is to first sort the array numerically: @nums = sort { $a <=> $b } @nums; ``` -Then, we have the minimum in the first entry, and the maximum in the last one.<br/> -It's easy to get and remove those two from the array at the same time: we can use `shift` to get and remove the first one (the minimum) , and `pop` to do the same for the last one (the maximum).<br/> +Then, we have the minimum in the fir |
