This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = struct();
a.a = 1;a.b = 2;a.c = 3;
y_correct = [1;2;3];
assert(isequal(your_fcn_name(a),y_correct))
ans =
1
2
3
|
2 | Pass |
a = struct();
a.a = 1;a.b = 2;a.c = 3;a.d = 4;
y_correct = [1;2;3;4];
assert(isequal(your_fcn_name(a),y_correct))
ans =
1
2
3
4
|
2527 Solvers
363 Solvers
354 Solvers
377 Solvers
242 Solvers