Loading problem...
An analytics reporting layer stores daily partitions in ISO date form and needs a presentation-ready version for business-facing exports.
Table: days
Task: Transform each row into this exact string layout:
Examples of valid output values:
Output requirements:
Supported submission environments:
days:
| day |
|------------|
| 2022-04-12 |
| 2021-08-09 |
| 2020-06-26 |[
{"day":"Tuesday, April 12, 2022"},
{"day":"Monday, August 9, 2021"},
{"day":"Friday, June 26, 2020"}
]Each source date is rendered as weekday name, month name, day number without leading zero, and four-digit year.
days:
| day |
|------------|
| 2000-02-29 |
| 2100-03-01 |
| 1970-01-01 |[
{"day":"Tuesday, February 29, 2000"},
{"day":"Monday, March 1, 2100"},
{"day":"Thursday, January 1, 1970"}
]Leap-year and boundary-era dates must still follow identical formatting rules.
days:
| day |
|------------|
| 2024-11-03 |
| 2024-11-30 |
| 2024-12-01 |[
{"day":"Sunday, November 3, 2024"},
{"day":"Saturday, November 30, 2024"},
{"day":"Sunday, December 1, 2024"}
]Single-digit and double-digit day numbers are both supported; only the day number formatting differs.
Constraints