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));
ind =
1 8
ind =
2 7
ind =
3
ind =
4
ind =
5 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
ind =
1 5 6 7 8 11 15
ind =
2 3 4 5 6 9
ind =
3 4
|
3 | Pass |
a = [-1 -1 -1 -1 -1 -1];
b_correct = [-1];
assert(isequal(dedupe(a),b_correct));
ind =
1 2 3 4 5 6
|
Swap the first and last columns
9904 Solvers
Number of 1s in the Binary Representation of a Number
319 Solvers
Back to basics 6 - Column Vector
809 Solvers
184 Solvers
Matlab Basics - y as a function of x
242 Solvers