"999 is enough for anybody" triple-zero padding (#18)

When I hit 999 exercises, I will finally have reached the ultimate
state of soteriological release and no more exercises will be needed.
The cycle will be complete. All that will be left is perfect quietude,
freedom, and highest happiness.
This commit is contained in:
Dave Gauer
2021-03-12 18:59:46 -05:00
parent 93eefe0f25
commit 0956f1839f
115 changed files with 70 additions and 62 deletions

View File

@@ -0,0 +1,10 @@
62c62,68
< return detectProblems(n) ???
---
> return detectProblems(n) catch |err| {
> if (err == MyNumberError.TooSmall) {
> return 10;
> }
>
> return err;
> };