Your question is Programming Fundamentals Check. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
What is the difference between PUT and POST?
Asked in the Google HR Screening stage. Implement describe_http_method(method) to encode the core distinction between the two HTTP methods.
The function receives method, either "PUT" or "POST", and returns a dictionary with purpose, idempotent, and target fields.
For PUT, return purpose: "replace", idempotent: true, and target: "specific resource". For POST, return purpose: "create or process", idempotent: false, and target: "resource collection or action".
def describe_http_method(method):