diff --git a/curriculum/challenges/english/99-dev-playground/daily-coding-challenges-javascript/javascript-challenge-1.md b/curriculum/challenges/english/99-dev-playground/daily-coding-challenges-javascript/javascript-challenge-1.md index 0ffca1839a6..b6f5573637a 100644 --- a/curriculum/challenges/english/99-dev-playground/daily-coding-challenges-javascript/javascript-challenge-1.md +++ b/curriculum/challenges/english/99-dev-playground/daily-coding-challenges-javascript/javascript-challenge-1.md @@ -51,7 +51,7 @@ assert.isTrue(isBalanced(" ")); assert.isFalse(isBalanced("abcdefghijklmnopqrstuvwxyz")); ``` -`isBalanced("123A#b!E&*456-o.U")` should return `true`. +`isBalanced("123A#b!E&*456-o.U")` should return `true`. ```js assert.isTrue(isBalanced("123A#b!E&*456-o.U")); diff --git a/curriculum/challenges/english/99-dev-playground/daily-coding-challenges-python/python-challenge-1.md b/curriculum/challenges/english/99-dev-playground/daily-coding-challenges-python/python-challenge-1.md index b6475c926ce..c9f5f3d1680 100644 --- a/curriculum/challenges/english/99-dev-playground/daily-coding-challenges-python/python-challenge-1.md +++ b/curriculum/challenges/english/99-dev-playground/daily-coding-challenges-python/python-challenge-1.md @@ -69,7 +69,7 @@ TestCase().assertFalse(is_balanced("abcdefghijklmnopqrstuvwxyz"))`) }}) ``` -`is_balanced("123A#b!E&*456-o.U")` should return `True`. +`is_balanced("123A#b!E&*456-o.U")` should return `True`. ```js ({test: () => { runPython(`