From 9a78eba37155c01a8ace885ff77a114343a0f3cc Mon Sep 17 00:00:00 2001 From: saurabh-pingale Date: Tue, 19 Aug 2025 22:55:45 +0530 Subject: [PATCH] fix(curriculum): align hint string with test case in vowel balance challenges (#61873) --- .../javascript-challenge-1.md | 2 +- .../daily-coding-challenges-python/python-challenge-1.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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(`