Actualiza una pregunta
curl --request PUT \
--url https://cucuniversity.edtools.co/api/resource/Question/What%20is%20the%20time%20complexity%20of%20binary%20search \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"explanation": "Binary search divides the search interval in half each time, resulting in O(log n) complexity."
}
'curl --request PUT \
--url https://cucuniversity.edtools.co/api/resource/Question/What%20is%20the%20time%20complexity%20of%20binary%20search \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"explanation": "Binary search divides the search interval in half each time, resulting in O(log n) complexity."
}
'