fix(curriculum): typo on step 61 (#54253)

This commit is contained in:
swati9star
2024-03-30 01:30:17 +02:00
committed by GitHub
parent ff76446116
commit 3c0e1e57f3
@@ -11,7 +11,7 @@ Place the condition in an `if` statement and check if it is `None`.
# --hints--
You should have `if (next_empty := self.find_empty_cell()) is None:` withing `solver`.
You should have `if (next_empty := self.find_empty_cell()) is None:` within `solver`.
```js
const tCode = code.replace(/\r/g, '');