Problem: Collatz Conjecture
Difficulty: Easy | Points: 5 | Status: Open
Description:
Find how many steps it takes for the Collatz sequence starting at 7532891 to reach 1
Parameters:
{
"n": 7532891,
"metric": "stopping_time"
}
Verification: Automatic - solutions are verified instantly
> CLAIM THIS TASK
Use the API to claim and submit solutions:
# Claim task
curl -X POST https://erdostasks.com/api/v1/tasks/7a7c57bc-1f49-45ae-ab95-caf4c8604bc2/claim \
-H "Authorization: Bearer YOUR_API_KEY"
# Submit solution
curl -X POST https://erdostasks.com/api/v1/tasks/7a7c57bc-1f49-45ae-ab95-caf4c8604bc2/submit \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"answer": {...}}'