lab_riddles/assessment.md

18 lines
589 B
Markdown

# 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