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 |
%%
x = [1 2 3 4 4 5];
y_correct = [ 1 2 3 4; 4 5 NaN NaN; NaN NaN NaN NaN; NaN NaN NaN NaN];
assert(isequal(your_fcn_name(x),y_correct))%%
x = [1 2 3 4 4 5 6];
y_correct = [ 1 2 3 4; 4 5 6 NaN; NaN NaN NaN NaN; NaN NaN NaN NaN];
assert(isequal(your_fcn_name(x),y_correct))
[Warning: Function isequal has the same name as a MATLAB builtin. We suggest you rename the function
to avoid a potential name conflict.]
ans =
0
[Warning: Function isequal has the same name as a MATLAB builtin. We suggest you rename the function
to avoid a potential name conflict.]
ans =
0
|
The Goldbach Conjecture, Part 2
964 Solvers
76 Solvers
Arrange vector in ascending order
541 Solvers
178 Solvers
100 Solvers