The 0–100 year challenge is simple: use the digits of the year, each exactly once, to make all the numbers from to inclusive.
The introductory challenge allows the digits to appear in any order. For instance, to make from :
But we don’t do that here. We do the elite challenge, where all 4 digits must appear exactly in their original order. For instance, to make 100 from 2024:
Naturally, the difficulty of the challenge depends entirely on what operations you allow. Agreeing on this is mathematically impossible, so we’ll define several rulesets in increasing levels of breadth.
ruleset | allowed operations | description |
---|---|---|
Core | Only the simplest of arithmetic operations, as well as combining digits to form multi-digit numbers. So far, no years are 100%-able at this level. | |
Further Core | Allows conversion to decimal without a leading . Technically valid, right? | |
Expansion | These make the challenge SO much more fun. | |
Further Expansion | ||
Absurd Expansion | At this point, the challenge isn’t fun anymore. |
The goal of these rulesets is to open up the possibilities such that it’s still possible to 100% the challenge, whilst not removing the elements of fun and challenge.1
So, which ruleset do I solve for? All of them, of course! Why settle with just one answer when you can find a multitude of unique ways to do it.
Expansion is definitely my favourite ruleset, but for each number, I try to find the strictest solution that I can – i.e. that which follows the strictest ruleset – and the most creative solutions.
- It feels like Mojang adding redstone features to Minecraft, lmao.↩