fix(curriculum): clean-up Project Euler 261-280 (#42905)

* fix: clean-up Project Euler 261-280

* fix: typo

* fix: typo

* fix: typo
This commit is contained in:
gikf
2021-07-24 09:09:54 +02:00
committed by GitHub
parent f4dc81bce3
commit f93acf28a6
20 changed files with 219 additions and 162 deletions

View File

@ -16,10 +16,10 @@ What's the expected number of steps until all seeds have been dropped in the top
# --hints--
`euler280()` should return 430.088247.
`antAndSeeds()` should return `430.088247`.
```js
assert.strictEqual(euler280(), 430.088247);
assert.strictEqual(antAndSeeds(), 430.088247);
```
# --seed--
@ -27,12 +27,12 @@ assert.strictEqual(euler280(), 430.088247);
## --seed-contents--
```js
function euler280() {
function antAndSeeds() {
return true;
}
euler280();
antAndSeeds();
```
# --solutions--