fix(curriculum): clean-up Project Euler 101-120 (#42597)

Co-authored-by: Sem Bauke <46919888+Sembauke@users.noreply.github.com>
This commit is contained in:
gikf
2021-06-30 14:25:46 +02:00
committed by GitHub
parent 25fcf835ed
commit dc168cd96d
19 changed files with 237 additions and 141 deletions

View File

@ -22,10 +22,10 @@ Find the least number for which the proportion of bouncy numbers is exactly 99%.
# --hints--
`euler112()` should return 1587000.
`bouncyNumbers()` should return `1587000`.
```js
assert.strictEqual(euler112(), 1587000);
assert.strictEqual(bouncyNumbers(), 1587000);
```
# --seed--
@ -33,12 +33,12 @@ assert.strictEqual(euler112(), 1587000);
## --seed-contents--
```js
function euler112() {
function bouncyNumbers() {
return true;
}
euler112();
bouncyNumbers();
```
# --solutions--