API endpoints
✅ API 엔드포인트
2-1. GET /problems?start={start}&end={end}
Request
GET /problems?start=45&end=59
Content-Type: application/json
Response
HTTP/1.1 200 OK
Content-Type: application/json
{
"content": [
{
"problem_id": 675,
"title": "Two Sum",
"difficulty": "Easy"
},....
{
"problem_id": 884,
"title": "Add Two Numbers",
"difficulty": "Medium"
}
]
}2-1. GET /problems/offset
2-1. GET /problems/cursor
2-2. GET /problems/{problem_id}
2-3. GET /contests/{contest_id}/leaderboard
2-4. POST /problems/{problem_id}/submission
Last updated