-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings.json
44 lines (44 loc) · 1.22 KB
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"_comment": [
{
"file_name_extension": "It is just a file in which code is written with extension."
},
{
"file_name": "This is compiled file. May not be applicable in some languages."
},
{
"input_file": "Input file with extension."
},
{
"output_file": "Output file with extension."
}
],
"workspaces": [
],
"programming-languages": [
{
"name": "C++",
"extension": ".cpp",
"compilation-command": "g++ file_name_extension -o file_name",
"run-command": "./file_name < input_file > output_file"
},
{
"name": "Python",
"extension": ".py",
"compilation-command": "None",
"run-command": "cat input_file | python3 file_name_extension > output_file"
}
],
"platforms": [
{
"name": "Codechef",
"url": "https://www.codechef.com/",
"path": "/etc/contest-parser/Codechef/"
},
{
"name": "Codeforces",
"url": "https://www.codeforces.com/",
"path": "/etc/contest-parser/Codeforces/"
}
]
}