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];
y_correct = [1 4 3 4 4];
assert(isequal(get14344(x),y_correct))
ans =
1 4 3 4 4
|
2 | Pass |
x = [4 3 2 1]
y_correct = [4 1 2 1 1];
assert(isequal(get14344(x),y_correct))
x =
4 3 2 1
ans =
4 1 2 1 1
|
986 Solvers
4105 Solvers
400 Solvers
Saving MATLAB session to a file
117 Solvers
Deleting an element in a matrix
242 Solvers