RogerBW's Blog

The Weekly Challenge 392: Extruded Palindrome Product 27 September 2026

I’ve been doing the Weekly Challenges. The latest involved string augmentation and analysis. (Note that this ends today.)

Task 1: Convert Palindrome

You are given a string.

Write a script to convert the given string to palindrome by adding characters in front of it.

Obviously there's a trivial solution to this: just reverse the string and prepend that reversal. So instead I worked to find the shortest possible palindrome.

I work on an array of characters. Here's the PostScript: first, a test to see whether an array is a palindrome.

/is_palindrome {
    0 dict begin
    /a exch def
    /l a length def

Assume it is.

    true

Check from the start to half way along the string.

    0 1 l 2 idiv {
        /i exch def

If the character i steps in from the start doesn't match the one i steps in from the end, it isn't. (And stop checking.)

        a i get a l i sub 1 sub get ne {
            pop false
            exit
        } if
    } for
    end
} bind def

Now do to the actual work.

/convertpalindrome {
    0 dict begin

Store the string as an array.

    s2a /c0 exch def

Start with zero additional characters.

    /i 0 def
    {

Make a copy of the base string.

        /c c0 deepcopy def

For i iterations (so the first time round we'll do nothing to the copy),

        0 1 i 1 sub {
            /n exch def

take a character from the right spot towards the end of the original, and add it to the beginning of the copy. (So given "ABACD" we'd generate "DABACD", "DCABACD", etc.)

            c c0 c0 length i sub n add get apush.left /c exch def
        } for

If that copy is now a palindrome, convert it back to a string and exit.

        c is_palindrome {
            c a2s
            exit
        } if

Otherwise increment and try again. We'll always get a terminating state, the one with the full reversed string I mentioned at the top.

        /i i 1 add def
    } loop
    end
} bind def

Task 2: Words Length Product

You are given an array of strings.

Write a script to return the maximum value of

len($words[i]) * len($words[j])

where the two words do not share common letters. If no such two words exist, return 0.

When I see a problem like this that calls for sets, and I contemplate doing it in languages that don't have sets, I become unenthused. But here it is in Perl.

sub wordslengthproduct($a) {

Convert each input string into a pseudo-set of characters.

  my @ws = map {{map {$_ => 1} split '', $_}} @{$a};
  my $mx = 0;

Iterate over each pair of strings (ignoring order).

  foreach my $i (0 .. $#ws - 1) {
    foreach my $j ($i + 1 .. $#ws) {

Go through the long tedious slog of calculating a set intersection.

      my $clean = 1;
      foreach my $ic (keys %{$ws[$i]}) {
        if (exists $ws[$j]->{$ic}) {
          $clean = 0;
          last;
        }
      }
      if ($clean) {
        foreach my $jc (keys %{$ws[$j]}) {
          if (exists $ws[$i]->{$jc}) {
            $clean = 0;
            last;
          }
        }
      }

If the sets are disjoint, calculate a value for this pair.

      if ($clean) {
        $mx = max($mx, length($a->[$i]) * length($a->[$j]));
      }
    }
  }
  $mx;
}

But having proper sets (in Raku) makes this same code so much cleaner!

sub wordslengthproduct(@a) {
    my @ws = @a.map({Set.new($_.comb)});
    my $mx = 0;
    for 0 .. @ws.end - 1 -> $i {
        for $i + 1 .. @ws.end -> $j {
            if (@ws[$i] (&) @ws[$j]).elems == 0 {
                $mx = max($mx, @a[$i].chars * @a[$j].chars);
            }
        }
    }
    $mx;
}

Full code in all tagged languages is on codeberg.

Add A Comment

Your Name
Your Email
Your Comment

Note that I will only approve comments that relate to the blog post itself, not ones that relate only to previous comments. This is to ensure that the blog remains outside the scope of the UK's Online Safety Act (2023).

Your submission will be ignored if any field is left blank, but your email address will not be displayed. Comments will be processed through markdown.

Search
Archive
Tags 1920s 1930s 1940s 1950s 1960s 1970s 1980s 1990s 2000s 2010s 2300ad 3d printing action advent of code adventure aeronautics aikakirja anecdote animation anime army astronomy audio audio tech aviation base commerce battletech bayern beer boardgaming book of the week bookmonth chain of command children chris chronicle church of no redeeming virtues cold war comedy computing contemporary cornish smuggler cosmic encounter coup covid-19 crime crystal cthulhu eternal cycling dead of winter disaster doctor who documentary drama driving drone ecchi economics en garde espionage essen 2015 essen 2016 essen 2017 essen 2018 essen 2019 essen 2022 essen 2023 essen 2024 essen 2025 existential risk falklands war fandom fanfic fantasy feminism filk film firefly first world war flash point flight simulation food garmin drive gazebo genesys geocaching geodata gin gkp gurps gurps 101 gus harpoon historical history horror horrorm science fiction hugo 2014 hugo 2015 hugo 2016 hugo 2017 hugo 2018 hugo 2019 hugo 2020 hugo 2021 hugo 2022 hugo 2023 hugo 2024 hugo 2025 hugo 2026 hugo-nebula reread humour in brief avoid instrumented life javascript julian simpson julie enfield kickstarter kotlin learn to play leaving earth linux liquor lovecraftiana lua mecha men with beards mpd museum music mystery naval noir non-fiction one for the brow openscad opera parody paul temple perl perl weekly challenge photography podcast poetry politics postscript powers prediction privacy project woolsack pyracantha python quantum rail raku ranting raspberry pi reading reading boardgames social real life restaurant review reviews romance rpg a day rpgs ruby rust scala science fiction scythe second world war security shipwreck simutrans smartphone south atlantic war squaddies stationery steampunk stuarts suburbia superheroes suspense talon television the resistance the weekly challenge thirsty meeples thriller tin soldier torg toys trailers travel type 26 type 31 type 45 typst vietnam war war wargaming weather wives and sweethearts writing about writing x-wing young adult
Special All book reviews, All film reviews
Produced by aikakirja v0.1