Skip to content

Commit eba47c5

Browse files
authored
Update config.json
1 parent 7b293a0 commit eba47c5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

config.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"image": "coderequest-js",
1515
"filename": "prog.js",
1616
"commands": [
17-
"time node prog.js"
17+
"node prog.js"
1818
]
1919
},
2020
{
@@ -23,7 +23,7 @@
2323
"image": "coderequest-ruby",
2424
"filename": "prog.rb",
2525
"commands": [
26-
"time ruby prog.rb"
26+
"ruby prog.rb"
2727
]
2828
},
2929
{
@@ -32,7 +32,7 @@
3232
"image": "coderequest-python",
3333
"filename": "prog.py",
3434
"commands": [
35-
"time python3 prog.py"
35+
"python3 prog.py"
3636
]
3737
},
3838
{
@@ -42,7 +42,7 @@
4242
"filename": "Main.java",
4343
"commands": [
4444
"javac Main.java",
45-
"time java Main"
45+
"java Main"
4646
]
4747
},
4848
{
@@ -52,7 +52,7 @@
5252
"filename": "main.c",
5353
"commands": [
5454
"gcc -o main main.c",
55-
"time ./main"
55+
"./main"
5656
]
5757
},
5858
{
@@ -62,7 +62,7 @@
6262
"filename": "main.cpp",
6363
"commands": [
6464
"g++ -o main -Wall main.cpp -O0",
65-
"time ./main"
65+
"./main"
6666
]
6767
},
6868
{
@@ -71,7 +71,7 @@
7171
"image": "coderequest-golang",
7272
"filename": "main.go",
7373
"commands": [
74-
"time go run main.go"
74+
"go run main.go"
7575
]
7676
}
7777
],

0 commit comments

Comments
 (0)