It works well on version R2013b. Has the cmd "unique" changed?
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
x = [1 2 5 2 2 7 8 3 3 1 3 8 8 8];
y_correct = [2 3];
assert(isequal(threeTimes(x),y_correct))
Error: Assertion failed.
|
2 | Fail |
%%
x = [1 1 1];
y_correct = [1];
assert(isequal(threeTimes(x),y_correct))
Error: Assertion failed.
|
3 | Fail |
%%
x = [5 10 -3 10 -3 11 -3 5 5 7];
y_correct = [-3 5];
assert(isequal(threeTimes(x),y_correct))
Error: Assertion failed.
|
Find the sum of all the numbers of the input vector
25639 Solvers
Who knows the last digit of pi?
488 Solvers
261 Solvers
439 Solvers
Number of Even Elements in Fibonacci Sequence
416 Solvers