aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Sommrey <28217714+jo-37@users.noreply.github.com>2025-10-14 11:48:43 +0200
committerJörg Sommrey <28217714+jo-37@users.noreply.github.com>2025-10-17 08:46:17 +0200
commit867a995d697d41136e13de96f0ad62f12b3febd4 (patch)
treec133378f10c22d6e6f83a7d15eeb9421c4f5cc93
parent891371db8b780601e7313b1aa86b8043eab887aa (diff)
downloadperlweeklychallenge-club-867a995d697d41136e13de96f0ad62f12b3febd4.tar.gz
perlweeklychallenge-club-867a995d697d41136e13de96f0ad62f12b3febd4.tar.bz2
perlweeklychallenge-club-867a995d697d41136e13de96f0ad62f12b3febd4.zip
Solution to task 1
-rwxr-xr-xchallenge-342/jo-37/perl/ch-1.pl96
1 files changed, 96 insertions, 0 deletions
diff --git a/challenge-342/jo-37/perl/ch-1.pl b/challenge-342/jo-37/perl/ch-1.pl
new file mode 100755
index 0000000000..a9cb79ee9f
--- /dev/null
+++ b/challenge-342/jo-37/perl/ch-1.pl
@@ -0,0 +1,96 @@
+#!/usr/bin/perl
+
+use v5.26;
+use Test2::V0 -no_srand;
+use Test2::Tools::Subtest 'subtest_streamed';
+use Getopt::Long;
+use experimental 'signatures';
+
+use List::MoreUtils 'part';
+use List::Util 'mesh';
+
+### Options and Arguments
+
+my ($tests, $examples, $verbose);
+GetOptions(
+ 'examples!' => \$examples,
+ 'tests!' => \$tests,
+ 'verbose!' => \$verbose,
+) or usage();
+
+run_tests($examples, $tests); # tests do not return
+
+usage() unless @ARGV;
+
+sub usage {
+ die <<~EOS;
+ $0 - balance string
+
+ usage: $0 [-examples] [-tests] [STR]
+
+ -examples
+ run the examples from the challenge
+
+ -tests
+ run some tests
+
+ STR
+ a string containing letters and digits only
+
+ EOS
+}
+
+
+### Input and Output
+
+say balance_string(shift);
+
+
+### Implementation
+#
+# For details see:
+# https://github.sommrey.de/the-bears-den/2025/10/17/ch-342.html#task-1
+
+
+sub balance_string ($str) {
+ my @parts = part {/\D/} sort split //, $str;
+ my $ld = $parts[1]->@* - $parts[0]->@*;
+ return '' if abs $ld > 1;
+ join '', (mesh $ld > 0 ? reverse @parts : @parts)[0 .. length($str) - 1];
+}
+
+
+### Examples and Tests
+
+sub run_tests ($examples, $tests) {
+ return unless $examples || $tests;
+
+ state sub run_example ($args, $expected, $name) {
+ my $result = balance_string(@$args);
+ is $result, $expected,
+ "$name: ('@$args') -> '$expected'";
+ }
+
+ plan 2;
+
+ $examples ? subtest_streamed(examples => sub {
+ my @examples = (
+ [['a0b1c2'], '0a1b2c', 'example 1'],
+ [['abc12'], 'a1b2c', 'example 2'],
+ [['0a2b1c3'], '0a1b2c3', 'example 3'],
+ [['1a23'], '', 'example 4'],
+ [['ab123'], '1a2b3', 'example 5'],
+ );
+ plan scalar @examples;
+ for (@examples) {
+ run_example @$_;
+ }
+ }) : pass 'skip examples';
+
+ $tests ? subtest_streamed(tests => sub {
+ plan 1;
+ pass 'no tests';
+ }) : pass 'skip tests';
+
+ exit;
+}