chore: manual translations (#42811)

This commit is contained in:
Nicholas Carrigan (he/him)
2021-07-09 21:23:54 -07:00
committed by GitHub
parent a3395269a0
commit c4fd49e5b7
806 changed files with 8935 additions and 4378 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--