From b3bb5d245c0864a75531209f170b750a2e304e8d Mon Sep 17 00:00:00 2001 From: Scott Walker <33037099+wswalker87@users.noreply.github.com> Date: Tue, 30 Jan 2024 03:36:17 -0600 Subject: [PATCH] fix(curriculum): Improved description to include variable. (#53434) Co-authored-by: Jessica Wilkins <67210629+jdwilkin4@users.noreply.github.com> --- .../6569f70a66ccdc42097ca051.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/learn-classes-and-objects-by-building-a-sudoku-solver/6569f70a66ccdc42097ca051.md b/curriculum/challenges/english/07-scientific-computing-with-python/learn-classes-and-objects-by-building-a-sudoku-solver/6569f70a66ccdc42097ca051.md index 18a3122fe30..970fef51f42 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/learn-classes-and-objects-by-building-a-sudoku-solver/6569f70a66ccdc42097ca051.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/learn-classes-and-objects-by-building-a-sudoku-solver/6569f70a66ccdc42097ca051.md @@ -7,7 +7,7 @@ dashedName: step-64 # --description-- -If still there are empty cells, create a loop in the `else` block that iterates over numbers from `1` to `9` (inclusive). +If there are still empty cells, create a loop in the `else` block that iterates over numbers from `1` to `9` (inclusive). Your loop should use the variable named `guess`. # --hints--