From 5e5015e47d52f08de4c24019a704f6670bd3a5ef Mon Sep 17 00:00:00 2001 From: Leda <38331868+LedaThemis@users.noreply.github.com> Date: Mon, 28 Feb 2022 10:54:19 +0300 Subject: [PATCH] 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 --- .../problem-184-triangles-containing-the-origin.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-184-triangles-containing-the-origin.md b/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-184-triangles-containing-the-origin.md index 904f49b66e..897759396e 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-184-triangles-containing-the-origin.md +++ b/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-184-triangles-containing-the-origin.md @@ -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--