diff options
| author | KUEPPO <tcheukueppo@tutanota.com> | 2022-11-11 22:03:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-11 22:03:10 +0100 |
| commit | e48a2bdff10a4b57981672058aa2ff036e89103e (patch) | |
| tree | cf48b5fdcd98d7d25bdd62262c8f3acfe5aa080a | |
| parent | 68630ce60585dd02c630c7f1eb8e5927ed94dfd3 (diff) | |
| download | perlweeklychallenge-club-e48a2bdff10a4b57981672058aa2ff036e89103e.tar.gz perlweeklychallenge-club-e48a2bdff10a4b57981672058aa2ff036e89103e.tar.bz2 perlweeklychallenge-club-e48a2bdff10a4b57981672058aa2ff036e89103e.zip | |
Update ch-2.pl
| -rw-r--r-- | challenge-190/kueppo-wesley/Perl/ch-2.pl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/challenge-190/kueppo-wesley/Perl/ch-2.pl b/challenge-190/kueppo-wesley/Perl/ch-2.pl index 065874316c..2546e0dbdb 100644 --- a/challenge-190/kueppo-wesley/Perl/ch-2.pl +++ b/challenge-190/kueppo-wesley/Perl/ch-2.pl @@ -12,9 +12,10 @@ use Test::Deep; =head1 PROBLEM Given C<X> and C<Y>, words from different encodings and C<F>, a function -which transliterates the alphabets between these encodings. The -primary issue is that composed alphabets are also alphabets. +which transliterates the alphabets between these encodings. +The primary issue is that the results of composed alphabets are also alphabets. +So, get all possible C<Y>s from C<X>. =head1 SOLUTION |
