fix(curriculum): More Open Ended Instructions (#48575)

reword - less is more
This commit is contained in:
Jeremy L Thompson
2022-11-24 11:42:10 -07:00
committed by GitHub
parent 7b860f920f
commit cab8ecd8ba

View File

@@ -8,11 +8,9 @@ dashedName: reverse-a-string
# --description--
Reverse the provided string.
Reverse the provided string and return the reversed string.
You may need to turn the string into an array before you can reverse it.
Your result must be a string.
For example, `"hello"` should become `"olleh"`.
# --hints--