diff --git a/pages/applications/pal.en.mdx b/pages/applications/pal.en.mdx index 260add7..2a891ec 100644 --- a/pages/applications/pal.en.mdx +++ b/pages/applications/pal.en.mdx @@ -75,7 +75,7 @@ later = today + relativedelta(hours=24) # The answer formatted with %m/%d/%Y is today.strftime('%m/%d/%Y') # Q: Jane thought today is 3/11/2002, but today is in fact Mar 12, which is 1 day later. What is the date 24 hours later in MM/DD/YYYY? -# If Jane thought today is 3/11/2002, but today is in fact Mar 12, then today is 3/1/2002. +# If Jane thought today is 3/11/2002, but today is in fact Mar 12, then today is 3/12/2002. today = datetime(2002, 3, 12) # 24 hours later, later = today + relativedelta(hours=24) @@ -102,4 +102,4 @@ exec(llm_out) print(born) ``` -This will output the following: `02/27/1998` \ No newline at end of file +This will output the following: `02/27/1998`