-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.json
66 lines (65 loc) · 1.7 KB
/
test.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"add":[
["Description","10","20"]
],
"compare":[
["-1","10","20"],
["0","20","20"],
["+1","50","20"]
],
"diff":[
["0-0","0","0"],
["10-30","10","30"],
["30-8000","30","8000"]
],
"multiply":[
["Basic","10","20"],
["Basic","123","456789"]
],
"mod":[
["Basic","189851","333"],
["t2","1000009","999"]
],
"pow":[
["Basic","10",20]
],
"gcd":[
["Basic","10","20"],
["Big","1234512345123451234512345","12"]
],
"fibonacci":[
["Basic",15]
],
"factorial":[
["Basic",15]
],
"bincoeff":[
["Basic",34,44],
["1000 C 900",1000,900],
["k > n",34,44]
],
"max":[
["Basic",["76","23","99","1","1","12","1"]],
["Big",["12","344","546456","2453452345","435236256","2652463254","33","0","67"]]
],
"min":[
["Basic",["76","23","99","1","1","12","1"]],
["Big",["12","344","546456","2453452345","435236256","2652463254","33","0","67"]]
],
"search":[
["Basic",["76","23","99","1","1","12","1"],"1"],
["Big",["12","344","546456","2453452345","435236256","2652463254","33","0","67"],"435236256"]
],
"binsearch":[
["Basic",["0","12","34","45","63","67","1232"],"63"],
["Weird",["1","1","1","1","2","2","2","2"],"1"],
["Weird",["1","1","1","1","2","2","2","2"],"2"]
],
"sort":[
["Basic",["76","23","99","1","1","12","1"]],
["Big",["12","344","546456","334","2453452345","435236256","2652463254","33","0","67","435236256"]]
],
"coin_row_problem":[
["Basic",["76","23","99","1","1","12","1"]]
]
}