-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathio.json
More file actions
103 lines (102 loc) · 1.79 KB
/
io.json
File metadata and controls
103 lines (102 loc) · 1.79 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[
{
"input":[[1, 1, 2, 1, 3, 5], false],
"output": 8
},
{
"input": [[ 1, 2, 1, 2, 3], false],
"output": 5
},
{
"input": [[10, 10, 20, 88, 9], true],
"output": 98
},
{
"input": [[0, 0, 1, 2, 1], false],
"output": 2
},
{
"input": [[4, 1, 2, 3, 2, 3, 4], true],
"output": 12
},
{
"input": [[2, 5, 6, 7, 15, 15], true],
"output": 8
},
{
"input": [[10, 10, 20, 88, 9], false],
"output": 98
},
{
"input": [[2, 3, 4, 5, 6, 7, 8, 9, 10], true],
"output": 30
},
{
"input": [[0], true],
"output": 0
},
{
"input": [[1, 2, 3, 4, 5, 6, 7, 8, 9, 10], false],
"output": 30
},
{
"input": [[0, -1, 1], true],
"output": 0
},
{
"input": [[0, 0, 0, 0, 0], false],
"output": 0
},
{
"input": [[0, 95, 182], true],
"output": 182
},
{
"input": [[23, 25, 2], false],
"output": 25
},
{
"input": [[0, 0, 958, 182], true],
"output": 958
},
{
"input": [[4, 2], false],
"output": 4
},
{
"input": [[10, 1, 10, 1, 10], true],
"output": 30
},
{
"input": [[1, 1, 1, 1, 50], false],
"output": 52
},
{
"input": [[-1, -2, -3, -4, -5], false],
"output": -1
},
{
"input": [[2, -1, 3, -4, 5], false],
"output": 10
},
{
"input": [[0, 2, 0, 4, 0, 6], false],
"output": 12
},
{
"input": [[3, 2, 3, 4, 5, 6, 3, 2], true],
"output": 14
},
{
"input": [[7], false],
"output": 7
},
{
"input": [[7, 8], true],
"output": 8
},
{
"input": [[6, 5, 4, 2, 1], true],
"output": 10
}
]