From 65e1e9978bcf51f03fb5f01fbb29224eca314afc Mon Sep 17 00:00:00 2001 From: Tom <20648924+moT01@users.noreply.github.com> Date: Fri, 31 Oct 2025 12:16:45 -0500 Subject: [PATCH] fix(curriculum): daily challenge 82 description (#63366) --- .../68e39ed6106dac2f0a98fd64.md | 2 +- .../daily-coding-challenges-python/68e39ed6106dac2f0a98fd64.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68e39ed6106dac2f0a98fd64.md b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68e39ed6106dac2f0a98fd64.md index a07c529a8e9..5c5f05e22ae 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68e39ed6106dac2f0a98fd64.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68e39ed6106dac2f0a98fd64.md @@ -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`. diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-python/68e39ed6106dac2f0a98fd64.md b/curriculum/challenges/english/blocks/daily-coding-challenges-python/68e39ed6106dac2f0a98fd64.md index 533ff36ae2a..f1cfd5ebe90 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-python/68e39ed6106dac2f0a98fd64.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-python/68e39ed6106dac2f0a98fd64.md @@ -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`.