RogerBW's Blog

Perl Weekly Challenge 119: Sequence Nibble 02 July 2021

I’ve been doing the Perl Weekly Challenges. The latest involved fake binary manipulation and an unusual number sequence. (Note that this is open until 4 July 2021.)

TASK #1 › Swap Nibbles

You are given a positive integer $N.

Write a script to swap the two nibbles of the binary representation of the given number and print the decimal number of the new binary representation.

To keep the task simple, we only allow integer less than or equal to 255.

Well now. In my day we called them nybbles, for consistency with bytes. But anyway…

The "binary representation" is the trap here; I mean, I could convert to a string of 1s and 0s, then string-manipulate into the right answer and convert back, but that's not what's needed. In fact this can be regarded as purely mathematical: the high nybble is $N divided by 16 (integer part), the low is $N mod 16, and 16×low + high will be the answer.

So in Perl that's:

  return 16*($n % 16)+int($n/16);

Raku gets us an integer-division operator:

  return 16*($n mod 16)+($n div 16);

Python and Ruby offer a combined divide-modulus function:

  t=divmod(n,16)
  return 16*t[1]+t[0]

but Rust doesn't. (Well, not in the language core; there's an external crate, but going to an external module for something that can be done quite readily without one doesn't seem worth the extra fuss.)

TASK #2 › Sequence without 1-on-1

Write a script to generate sequence starting at 1. Consider the increasing sequence of integers which contain only 1s, 2s and 3s, and do not have any doublets of 1s like below. Please accept a positive integer $N and print the $Nth term in the generated sequence.

1, 2, 3, 12, 13, 21, 22, 23, 31, 32, 33, 121, 122, 123, 131, …

Well, there's a sequence that isn't in the OEIS! I thought about various means of generating this directly, and noted that there is a sequence that gives the index of the first number of length n: OEIS #A293005. But I can't treat it as base-3 or base-4 because we have three symbols and each of them is significant at the start of a number… in fact it's a little like the Excel column numbering system, which I did for PWC #60… except for that exclusion of double-1s. So I'd need another function that worked out an offset from how many of those there have been…

In the end it seemed simpler just to increment an integer, filter with regular expressions, and skip numbers that weren't allowed. It might be quicker to generate the sequence by more conventional means to build a list of values already matching /^[123+]$/, and then filter only those few to make sure they don't match /11/, but I didn't check this.

In Raku:

sub sw($c is copy) {
  my $n=0;
  while ($c) {
    $n++;
    if ($n ~~ /<[04..9]>/ || $n ~~ /11/) {
      next;
    }
    $c--;
  }
  return $n;
}

and the others work similarly, though in Python, Ruby and Rust I can explicitly compile the regexp just once. But even the Rust version is basically recognisable as kin to that Raku.

fn sw (cc: u32) -> u32 {
    let mut c=cc;
    let mut n=0;
    let p=Regex::new(r"([04-9]|11)").unwrap();
    while c>0 {
        n+=1;
        if p.is_match(&n.to_string()) {
            continue;
        }
        c-=1;
    }
    return n;
}

Full code on github.

See also:
Perl Weekly Challenge 60: Excel columns and number generation


  1. Posted by RogerBW at 12:53pm on 05 July 2021

    Part 1 is also susceptible to bitmask-and-shift, and of course pack/unpack. If one's doing it in strings, converting to hex (one character per nybble) becomes a good choice.

    Part 2 is probably done "properly" by generating the next sequence entry and then filtering on 11s.

    An interesting compromise: increment, convert to base 4, throw out anything with a non-leading zero, throw out double 1s. (Of course that base conversion isn't readily available in Perl.)

    Here's a "pure" array-based solution which generates sw(2000) about 500 times faster than my regexp-based one:

    sub sw {
      my $c=shift;
      my @n=(0);
      my $o;
      while ($c) {
        my $i=0;
        while (1) {
          unless (defined $n[$i]) {
            $n[$i]=0;
          }
          $n[$i]++;
          if ($n[$i]>3) {
            $n[$i]=1;
            $i++;
          } else {
            last;
          }
        }
        $o=join('',reverse @n);
        unless ($o =~ /11/) {
          $c--;
        }
      }
      return $o;
    }
    

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