fix(curriculum): fix typo in challenge (#45270)

* fix typo in other languages

* Revert "fix typo in other languages"

This reverts commit b973317cc14fb4f719ec60f1bdfad83d0c03760f.

* remove typo in challenge
This commit is contained in:
Leda
2022-02-28 10:54:19 +03:00
committed by GitHub
parent b6706a0232
commit 5e5015e47d

View File

@ -20,10 +20,10 @@ How many triangles are there containing the origin in the interior and having al
# --hints--
`trianglesConttainingOrigin()` should return `1725323624056`.
`trianglesContainingOrigin()` should return `1725323624056`.
```js
assert.strictEqual(trianglesConttainingOrigin(), 1725323624056);
assert.strictEqual(trianglesContainingOrigin(), 1725323624056);
```
# --seed--