From de4e16a676e4fd9401609c7ab3d9329ec392923d Mon Sep 17 00:00:00 2001 From: lazy-geek <38218691+lazy-geek@users.noreply.github.com> Date: Thu, 17 Jun 2021 12:27:57 +0530 Subject: [PATCH] fix(curriculum): typo in Project Euler Problem (#42539) * fixed typo * removed change from translation * fixed typo only in english language --- .../project-euler/problem-349-langtons-ant.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-349-langtons-ant.md b/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-349-langtons-ant.md index e73c284fff..239ba5a6a1 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-349-langtons-ant.md +++ b/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-349-langtons-ant.md @@ -16,7 +16,7 @@ The ant is always oriented in one of the cardinal directions (left, right, up or \- if it is on a white square, it flips the color of the square to black, rotates 90 degrees clockwise and moves forward one square. -Starting with a grid that is entirely white, how many squares are black after 1018 moves of the ant? +Starting with a grid that is entirely white, how many squares are black after 1018 moves of the ant? # --hints--