RogerBW's Blog

The Weekly Challenge 201: Penny Numbers 29 January 2023

I’ve been doing the Weekly Challenges. The latest involved an array search and a mathematical classic. (Note that this is open until 29 January 2023.)

Task 1: Missing Numbers

You are given an array of unique numbers.

Write a script to find out all missing numbers in the range 0..$n where $n is the array size.

The examples both assume an integer return, i.e. there's a single missing number, so that's what I wrote – more specifically the lowest missing number. Otherwise I'd have used a grep, filter, find_all, etc., returning an array.

(How could it be multiple if the numbers are unique? [100, 101, 102] would return [0, 1, 2, 3].)

Ruby:

def missingnumber(l)
  v = Set.new(l)
  0.upto(l.length) do |i|
    if !v.include?(i) then
      return i
    end
  end
  return 0
end

Task 2: Penny Piles

You are given an integer, $n > 0.

Write a script to determine the number of ways of putting $n pennies in a row of piles of ascending heights from left to right.

This is in fact the partition function, the number of distinct additive partitions of the input number, which is A000041 in the OEIS. Not rating myself with Ramanujan, I borrowed and converted some SAGE (now SageMath) code from that page (originally by Peter Luschny).

(Except in Perl, since there I allow myself Math::Prime::Util which includes its own implementation.)

Raku:

sub pennypiles($n) {
    if ($n == 0) {
        return 1;
    }
    my $s = 0;
    my $j = $n - 1;
    my $k = 2;
    while ($j >= 0) {
        my $t = pennypiles($j);
        if (($k div 2) % 2 == 1) {
            $s += $t;
        } else {
            $s -= $t;
        }
        if ($k % 2 == 1) {
            $j -= $k;
        } else {
            $j -= ($k div 2);
        }
        $k++;
    }
    return $s;
}

Full code on github.

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