fix(curriculum): daily challenge 82 description (#63366)

This commit is contained in:
Tom
2025-10-31 12:16:45 -05:00
committed by GitHub
parent a7bc2ae348
commit 65e1e9978b
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ dashedName: challenge-82
Given a string representing a variable name, convert it to "spooky case" using the following constraints:
- Replace all underscores (`_`), and hyphens (`-`) with a tilde (`~`).
- Capitalize the first letter of the string, and every other letter after that, ignore the tilde character when counting.
- Capitalize the first letter of the string, and every other letter after that. Ignore the tilde character when counting. Make all other letters lowercase.
For example, given `hello_world`, return `HeLlO~wOrLd`.

View File

@@ -10,7 +10,7 @@ dashedName: challenge-82
Given a string representing a variable name, convert it to "spooky case" using the following constraints:
- Replace all underscores (`_`), and hyphens (`-`) with a tilde (`~`).
- Capitalize the first letter of the string, and every other letter after that, ignore the tilde character when counting.
- Capitalize the first letter of the string, and every other letter after that. Ignore the tilde character when counting. Make all other letters lowercase.
For example, given `hello_world`, return `HeLlO~wOrLd`.