fix(curriculum): update description for hint analyzer (#58167)

This commit is contained in:
Joaquin Descotte
2025-01-16 00:21:41 -05:00
committed by GitHub
parent a52158c19f
commit 256317d4cc

View File

@@ -9,7 +9,7 @@ dashedName: step-3
It's time to count the consonants. Create a `getConsonantCount` function with a `sentence` parameter.
Inside the function, use a loop to count the number of consonants in the `sentence` that will be passed into the function when it is called. A consonant is anything that is not the following characters: `"aeiou"`.
Inside the function, use a loop to count the number of consonants in the `sentence` that will be passed into the function when it is called. A consonant is any letter that is not one of the following characters: `"aeiou"`.
Your `getConsonantCount` function must return a number.