RogerBW's Blog

Perl Weekly Challenge 47: roman calculator and gapful numbers 09 March 2020

I’ve been doing the Perl Weekly Challenges. The latest was about doing Roman arithmetic and generating gapful numbers.

In keeping with my self-imposed rules, I installed the Roman module for Perl5. Then it's just a matter of validating everything and doing the conversions.

use Roman;

my %ol=map {$_ => 1} qw(+ - * /);
my ($a,$op,$b)=@ARGV;

unless (isroman($a)) {
  die "$a is not a valid Roman number\n";
}
unless (exists $ol{$op}) {
  die "$op is not a valid operation\n";
}
unless (isroman($b)) {
  die "$a is not a valid Roman number\n";
}

$a=arabic($a);
$b=arabic($b);
my $c;
if ($op eq '+') {
  $c=$a+$b;
} elsif ($op eq '-') {
  $c=$a-$b;
} elsif ($op eq '*') {
  $c=$a*$b;
} else {
  $c=int($a/$b);
}
if ($c<1 || $c>3999) {
  die "Result $c is out of range\n";
}

print Roman($c),"\n";

For Perl6 I kept the same conversion interface but had to implement the back-end as well, which was rather more interesting. (It will probably miss some invalid Roman numbers, though.) The Roman to Arabic conversion generates a set of matches for each digit place and checks them in descending length order. Probably greedy regexps would do this automatically but I was having a busy day.

The nested flag-checks were needed because last LABEL didn't work as the documentation described it.

sub roman ($in) {
  my @pattern=('','0','00','000','01','1','10','100','1000','02');
  my @phase=(('m','',''),('c','d','m'),('x','l','c'),('i','v','x'));
  if ($in > 3999 or $in < 1) {
    die "$in is out of range\n";
  }
  my @l=comb(/\d/,sprintf('%04d',truncate($in)));
  my $out='';
  for (0..3) -> $phase {
    my $p=@pattern[@l[$phase]];
    for (0..2) -> $ix {
      $p ~~ s:g/$ix/@phase[$phase][$ix]/;
    }
    $out ~= $p;
  }
  return $out;
}

sub Roman ($in) {
 return uc(roman($in));
}

sub arabic ($in) {
  my $im=$in;
  my @pattern=('','0','00','000','01','1','10','100','1000','02');
  my @phase=(('m','?','?'),('c','d','m'),('x','l','c'),('i','v','x'));
  my $mul=1000;
  my $n=0;
  for (0..3) -> $phase {
    my %r;
    for (1..9) -> $pi {
      my $p=@pattern[$pi];
      for (0..2) -> $ix {
        $p ~~ s:g/$ix/@phase[$phase][$ix]/;
      }
      %r{$p.chars}{$p}=$pi;
    }
    my $flag=0;
    for (4,3,2,1) -> $l {
      for (keys %r{$l}) -> $k {
        if ($im ~~ s:i/^$k//) {
          $n += $mul*%r{$l}{$k};
          $flag=1;
          last;
        }
        if ($flag) {
          last;
        }
      }
      if ($flag) {
        last;
      }
    }
    $mul /= 10;
  }
  if ($im) {
    return 0;
  }
  return $n;
}

sub isroman ($in) {
  return (!arabic($in)==0);
}

Part 2 was much simpler: a gapful number is divisible by the concatenation of its first and last digits.

my $count=20;
my $n=100;

while ($count>0) {
  $n =~ /^(.).*(.)/;
  my $d=$1.$2;
  if ($n % $d == 0) {
    print "$n\n";
    $count--;
  }
  $n++;
}

For Perl6 I got a little sneaky with the Match object.

#! /usr/bin/perl6

my $count=20;
my $n=100;

while ($count>0) {
  $n ~~ /^(.).*(.)/;
  my $d=$/.list.join('');
  if ($n % $d == 0) {
    print "$n\n";
    $count--;
  }
  $n++;
}

Comments on this post are now closed. If you have particular grounds for adding a late comment, comment on a more recent post quoting the URL of this one.

Search
Archive
Tags 1920s 1930s 1940s 1950s 1960s 1970s 1980s 1990s 2000s 2010s 3d printing action advent of code aeronautics aikakirja anecdote animation anime army astronomy audio audio tech aviation base commerce battletech 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 cthulhu eternal cycling dead of winter 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 existential risk falklands war fandom fanfic fantasy feminism 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 hugo 2014 hugo 2015 hugo 2016 hugo 2017 hugo 2018 hugo 2019 hugo 2020 hugo 2022 hugo-nebula reread 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 opera parody paul temple perl perl weekly challenge photography podcast politics postscript powers prediction privacy project woolsack pyracantha python quantum rail raku ranting raspberry pi reading reading boardgames social real life restaurant 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 television the resistance the weekly challenge thirsty meeples thriller tin soldier torg toys trailers travel type 26 type 31 type 45 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