summaryrefslogtreecommitdiff
path: root/static/submit.js
blob: 81e3aa6d052f70f2119429fa5367f2033e76bfa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

function submit() {
    const submission = {
        user_id: 1,
        problem_id: 2,
        language: "c++",
        details: "blah blah",
        code: "blah blah",
    };
}

function init() {
    
}