mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
fix(curriculum): align hint string with test case in vowel balance challenges (#61873)
This commit is contained in:
+1
-1
@@ -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"));
|
||||
|
||||
+1
-1
@@ -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(`
|
||||
|
||||
Reference in New Issue
Block a user