mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-04-12 01:00:13 -04:00
fix(curriculum): daily challenge 82 description (#63366)
This commit is contained in:
@@ -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`.
|
||||
|
||||
|
||||
@@ -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`.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user