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:
@ -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--
|
||||
|
Reference in New Issue
Block a user