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 |
v = [1 2 5 13 55 23 15];
d = 5;
y_correct = [1 2 13 23];
assert(isequal(digitRemove(v,d),y_correct))
|
2 | Pass |
v = [3 24 7 9 18 55 67 71];
d = 7;
y_correct = [3 24 9 18 55];
assert(isequal(digitRemove(v,d),y_correct))
|
4092 Solvers
75 Solvers
Back to basics 20 - singleton dimensions
225 Solvers
Matrix indexing with two vectors of indices
404 Solvers
2083 Solvers