Complete the tasks below and submit your solution
Fetch the test details from our API:
/test
You'll receive:
The response from GET /test contains everything you need:
Send a POST request to /submit with the following JSON body:
/submit
{
"name": "Your Full Name",
"email": "your@email.com",
"github_link": "https://github.com/yourusername/repo-fork",
"answers": [
[0, 1],
[1, 2],
[0, 1],
...
]
}
| Field | Type | Description |
|---|---|---|
name |
string | Your full name |
email |
string | Your email address |
github_link |
string | URL of your forked repository with the implementation |
answers |
array |
Your outputs for each test case in order — one [i, j] pair per case.Must contain exactly as many entries as there are test cases. |
The server checks every answer against the hidden expected output. All cases must pass for the submission to be accepted.