Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1:10;
y_correct = 3:2:19;
assert(isequal(sumEachPair(x),y_correct))
v2 =
3 5 7 9 11 13 15 17 19
|
2 | Pass |
x = [1:100]';
y_correct = [3:2:199]';
assert(isequal(sumEachPair(x),y_correct))
v2 =
3
5
7
9
11
13
15
17
19
21
23
25
27
29
31
33
35
37
39
41
43
45
47
49
51
53
55
57
59
61
63
65
67
69
71
73
75
77
79
81
83
85
87
89
91
93
95
97
99
101
103
105
107
109
111
113
115
117
119
121
123
125
127
129
131
133
135
137
139
141
143
145
147
149
151
153
155
157
159
161
163
165
167
169
171
173
175
177
179
181
183
185
187
189
191
193
195
197
199
|
17223 Solvers
All your base are belong to us
463 Solvers
First non-zero element in each column
593 Solvers
Determine Whether an array is empty
646 Solvers
Separate even from odd numbers in a vector - without loops
304 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!