aropan / clist

Your comprehensive guide to global programming contests. Track events, get details, and never miss a competition.

Home Page:https://clist.by

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

An api that returns problem list for a given Contest ID

sharoha opened this issue · comments

Hi,

I am currently working on a use case that requires fetching all problems for a given contest. For instance for a contest with ID "weekly-contest-400", I am expecting the following templated response.

{ 
     "contestId": "weekly-contest-400",
     "problemList": [
             "problemDescription": "$problem_description", 
             "test_cases": [
               // all test cases for this problem
             ]
     ]
}

Wanted to check if the current repo supports a query like above?