Add assessment

This commit is contained in:
Chris Proctor 2024-05-21 00:27:26 -04:00
parent 8faa4c5ad9
commit b323147e48
1 changed files with 17 additions and 0 deletions

17
assessment.md Normal file
View File

@ -0,0 +1,17 @@
# Riddles Lab Assessment
Hi Tom,
Everything looks almost right, though you have a funny bug, "jason" instead of "json"
in `get_random_riddle`.
In your commit message you write,
> 1. I often use my google home to add items to my
> grocery list. This probably will send some form of get request to google keep
I think it's probably a POST request. GET requests should not change the state of
the system, and therefore should be safe to re-run multiple times. If you send the same
request to add an item to your shopping cart, you'll have a ton of stuff in your cart :)
Chris