Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 1;
assert(isequal(your_fcn_name(x),y_correct))
x = [9 2 2];
y_correct = [9 2];
assert(isequal(your_fcn_name(x),y_correct))
x = [-4 1 1];
y_correct = [-4 1];
assert(isequal(your_fcn_name(x),y_correct))
x = [42 1 1]
y_correct = [42 1];
assert(isequal(your_fcn_name(x),y_correct))
x = [42 1 1 1 42 17 17];
y_correct = [42 1 17];
assert(isequal(your_fcn_name(x),y_correct))
x =
42 1 1
|
6719 Solvers
Calculate the Levenshtein distance between two strings
456 Solvers
Back to basics 21 - Matrix replicating
1052 Solvers
216 Solvers
Sum the 'edge' values of a matrix
232 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!