fix(curriculum): clean-up Project Euler 201-220 (#42826)

* fix: clean-up Project Euler 201-220

* fix: corrections from review

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>

Co-authored-by: Tom <20648924+moT01@users.noreply.github.com>
This commit is contained in:
gikf
2021-07-15 09:20:31 +02:00
committed by GitHub
parent 505c3b7c6c
commit eef1805fe6
20 changed files with 254 additions and 156 deletions

View File

@ -16,10 +16,10 @@ What is the expected number of unoccupied squares after 50 rings of the bell? Gi
# --hints--
`euler213()` should return 330.721154.
`fleaCircus()` should return `330.721154`.
```js
assert.strictEqual(euler213(), 330.721154);
assert.strictEqual(fleaCircus(), 330.721154);
```
# --seed--
@ -27,12 +27,12 @@ assert.strictEqual(euler213(), 330.721154);
## --seed-contents--
```js
function euler213() {
function fleaCircus() {
return true;
}
euler213();
fleaCircus();
```
# --solutions--