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));
ans =
5 3 6 4 7 9
|
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 =
1 0 0 0 1 1 1 1 0 0 1 2 2 0 1
ans =
1 0 2
|
3 | Pass |
%%
a = [-1 -1 -1 -1 -1 -1];
b_correct = [-1];
assert(isequal(dedupe(a),b_correct));
ans =
-1
|
The Goldbach Conjecture, Part 2
1284 Solvers
874 Solvers
Create a vector whose elements depend on the previous element
391 Solvers
5465 Solvers
373 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!