Fix a typo of the prompt

It should have been 3/12/202, but it was 3/1/2002.
pull/228/head
Pt J 1 year ago committed by GitHub
parent ab2aea9b43
commit f2c80c2405
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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`
This will output the following: `02/27/1998`

Loading…
Cancel
Save