-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathio.json
More file actions
43 lines (42 loc) · 876 Bytes
/
io.json
File metadata and controls
43 lines (42 loc) · 876 Bytes
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
[
{
"input":[[0, 4, 4, 1], [0, 5, 4, 8], 4],
"output": true
},
{
"input": [[1, 6, 8, 3], [9, 3, 3], 3],
"output": false
},
{
"input": [[0], [0], 1],
"output": false
},
{
"input": [[15, 10, 2], [2, 89, 2, 43], 2],
"output": true
},
{
"input": [[], [], []],
"output": false
},
{
"input": [[[2, 4], 5], [[4, 2], 5], 5],
"output": true
},
{
"input": [[[7, 9], 35, 11], [[7, 9]], [7, 9]],
"output": true
},
{
"input": [["c", "i", "o", "i"], ["c", "e", "r", "i"], "i"],
"output": true
},
{
"input": [[true, false, false], [false, true, false], false],
"output": true
},
{
"input": [[[0, 1], [1, 0], 0], [[0, 1], [1, 0]], 0],
"output": false
}
]