You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
('0705a8e5-dc86-4cec-8909-150c5e54fa9c', 'null values are omitted from the final result', '[1,2,null]', '[1,2]'),
26
-
('bc72da10-5f55-4ada-baf3-50e4da02ec8e', 'consecutive null values at the front of the array are omitted from the final result', '[null,null,3]', '[3]'),
27
-
('6991836d-0d9b-4703-80a0-3f1f23eb5981', 'consecutive null values in the middle of the array are omitted from the final result', '[1,null,null,4]', '[1,4]'),
28
-
('dc90a09c-5376-449c-a7b3-c2d20d540069', '6 level nested array with null values', '[0,2,[[2,3],8,[[100]],null,[[null]]],-2]', '[0,2,2,3,8,100,-2]'),
29
-
('51f5d9af-8f7f-4fb5-a156-69e8282cb275', 'all values in nested array are null', '[null,[[[null]]],null,null,[[null,null],null],null]', '[]');
30
-
21
+
(
22
+
'8c71dabd-da60-422d-a290-4a571471fb14',
23
+
'empty',
24
+
'[]',
25
+
'[]'
26
+
),
27
+
(
28
+
'd268b919-963c-442d-9f07-82b93f1b518c',
29
+
'no nesting',
30
+
'[0,1,2]',
31
+
'[0,1,2]'
32
+
),
33
+
(
34
+
'3f15bede-c856-479e-bb71-1684b20c6a30',
35
+
'flattens a nested array',
36
+
'[[[]]]',
37
+
'[]'
38
+
),
39
+
(
40
+
'c84440cc-bb3a-48a6-862c-94cf23f2815d',
41
+
'flattens array with just integers present',
42
+
'[1,[2,3,4,5,6,7],8]',
43
+
'[1,2,3,4,5,6,7,8]'
44
+
),
45
+
(
46
+
'd3d99d39-6be5-44f5-a31d-6037d92ba34f',
47
+
'5 level nesting',
48
+
'[0,2,[[2,3],8,100,4,[[[50]]]],-2]',
49
+
'[0,2,2,3,8,100,4,50,-2]'
50
+
),
51
+
(
52
+
'd572bdba-c127-43ed-bdcd-6222ac83d9f7',
53
+
'6 level nesting',
54
+
'[1,[2,[[3]],[4,[[5]]],6,7],8]',
55
+
'[1,2,3,4,5,6,7,8]'
56
+
),
57
+
(
58
+
'0705a8e5-dc86-4cec-8909-150c5e54fa9c',
59
+
'null values are omitted from the final result',
60
+
'[1,2,null]',
61
+
'[1,2]'
62
+
),
63
+
(
64
+
'bc72da10-5f55-4ada-baf3-50e4da02ec8e',
65
+
'consecutive null values at the front of the array are omitted from the final result',
66
+
'[null,null,3]',
67
+
'[3]'
68
+
),
69
+
(
70
+
'6991836d-0d9b-4703-80a0-3f1f23eb5981',
71
+
'consecutive null values in the middle of the array are omitted from the final result',
0 commit comments