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));
b =
5 3 6 4 7 9
w =
1
2
3
4
5
9
x =
1
2
3
4
5
5
2
1
6
|
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
b =
1 0 2
w =
1
2
12
x =
1
2
2
2
1
1
1
1
2
2
1
3
3
2
1
|
3 | Pass |
a = [-1 -1 -1 -1 -1 -1];
b_correct = [-1];
assert(isequal(dedupe(a),b_correct));
b =
-1
w =
1
x =
1
1
1
1
1
1
|
9875 Solvers
Sort a list of complex numbers based on far they are from the origin.
4327 Solvers
434 Solvers
401 Solvers
480 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!