From df3d043fedc618697894ab26355c2803c2880ab7 Mon Sep 17 00:00:00 2001 From: LK521 Date: Tue, 26 Oct 2021 18:51:24 +0800 Subject: [PATCH] fix(curriculum): change note in problem 14 (#44015) --- .../project-euler/problem-14-longest-collatz-sequence.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-14-longest-collatz-sequence.md b/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-14-longest-collatz-sequence.md index 807f362857..27f5632517 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-14-longest-collatz-sequence.md +++ b/curriculum/challenges/english/10-coding-interview-prep/project-euler/problem-14-longest-collatz-sequence.md @@ -22,7 +22,7 @@ It can be seen that this sequence (starting at 13 and finishing at 1) contains 1 Which starting number, under the given `limit`, produces the longest chain? -**Note:** Once the chain starts the terms are allowed to go above one million. +**Note:** Once the chain starts the terms are allowed to go above `limit`. # --hints--