aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Muth <matthias.muth@gmx.de>2024-06-16 10:03:03 +0200
committerMatthias Muth <matthias.muth@gmx.de>2024-06-16 10:03:03 +0200
commit4b74e53b81d0eea1ce002c095ced65f8c2890606 (patch)
tree68c706178e00192a30f6197614ae5e4d92825c6d
parentc1462a7b0cf6e85ba7bad516320c306fa9dc52cc (diff)
downloadperlweeklychallenge-club-4b74e53b81d0eea1ce002c095ced65f8c2890606.tar.gz
perlweeklychallenge-club-4b74e53b81d0eea1ce002c095ced65f8c2890606.tar.bz2
perlweeklychallenge-club-4b74e53b81d0eea1ce002c095ced65f8c2890606.zip
Challenge 273 Task 1 and 2 solutions in Perl by Matthias Muth
-rw-r--r--challenge-273/matthias-muth/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/challenge-273/matthias-muth/README.md b/challenge-273/matthias-muth/README.md
index 62c02cf96a..2ac802b1c1 100644
--- a/challenge-273/matthias-muth/README.md
+++ b/challenge-273/matthias-muth/README.md
@@ -32,7 +32,7 @@
> Output: 13<br/>
We need the number of times that the `$char` character appears in the `$str` string.
-So let's count character frequencies Just like we always do:
+So let's count character frequencies. Just like we always do:
```perl
my %freq;
@@ -52,7 +52,7 @@ I guess every Perl programmer likes Perl's 'Logical Defined-Or' operator! :-)
For rounding towards the nearest integer, there are at least these three ways to go:
-- `use POSIX qw( round );`
+- `use POSIX qw( round );`
Loading the `POSIX` module seems like a big overhead
for just rounding a floating point number.<br/>