fix(curriculum): add UTC clarification note to odd or even day challenge (#65884)

Co-authored-by: majestic-owl448 <26656284+majestic-owl448@users.noreply.github.com>
This commit is contained in:
Jeevankumar S
2026-02-15 00:08:01 +05:30
committed by GitHub
parent 6affb2b19c
commit ff277a82dc
2 changed files with 4 additions and 0 deletions
@@ -14,6 +14,8 @@ Given a timestamp (number of milliseconds since the Unix epoch), return:
For example, given `1769472000000`, a timestamp for January 27th, 2026, return `"odd"` because the day number (`27`) is an odd number.
Note: The timestamp is in milliseconds and you should use the date in the UTC timezone, not in your local time.
# --hints--
`oddOrEvenDay(1769472000000)` should return `"odd"`.
@@ -14,6 +14,8 @@ Given a timestamp (number of milliseconds since the Unix epoch), return:
For example, given `1769472000000`, a timestamp for January 27th, 2026, return `"odd"` because the day number (`27`) is an odd number.
Note: The timestamp is in milliseconds and you should use the date in the UTC timezone, not in your local time.
# --hints--
`odd_or_even_day(1769472000000)` should return `"odd"`.