Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = [5 3 6 4 7 7 3 5 9];
b_correct = [5 3 6 4 7 9];
assert(isequal(dedupe(a),b_correct));
|
2 | Pass |
%%
a = [1 0 0 0 1 1 1 1 0 0 1 2 2 0 1]
b_correct = [1 0 2];
assert(isequal(dedupe(a),b_correct));
a =
Columns 1 through 10
1 0 0 0 1 1 1 1 0 0
Columns 11 through 15
1 2 2 0 1
|
3 | Pass |
%%
a = [-1 -1 -1 -1 -1 -1];
b_correct = [-1];
assert(isequal(dedupe(a),b_correct));
|
Find the alphabetic word product
2321 Solvers
579 Solvers
Rounding off numbers to n decimals
1050 Solvers
Pernicious Anniversary Problem
735 Solvers
664 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!