Smart !
Doesn't work with [1 2 2 1] for example.
Thanks for the additional test question!
Test case 5 answer is wrong. the correct answer is [2 1 2 2]. Change the test case 5 answer
i need the code part of 3rd test case ..
can anyone help
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [5 5 2 1 1 1 1 3];
correct = [2 5 1 2 4 1 1 3];
assert(isequal(correct, CountSeq(x)));
|
2 | Pass |
%%
x = [9];
correct = [1 9];
assert(isequal(correct, CountSeq(x)));
|
3 | Pass |
%%
x = ones(1,9);
correct = [9 1];
assert(isequal(correct, CountSeq(x)));
|
4 | Pass |
%%
x = 1:9;
correct = [1 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9];
assert(isequal(correct, CountSeq(x)));
|
5 | Fail |
%%
x = [1 2 2 1];
correct = [1 1 2 2 1 1];
assert(isequal(correct, CountSeq(x)));
Error: Assertion failed.
|
739 Solvers
831 Solvers
Duplicate each element of a vector.
518 Solvers
530 Solvers
511 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!