Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [2 5 1 2 4 1 1 3];
correct = [5 5 2 1 1 1 1 3];
assert(isequal(correct, RevCountSeq(x)));
y =
5 5 0 0 2 0 0 0 1 1 1 1 3 0 0 0
|
2 | Pass |
%%
x = [1 9];
correct = [9];
assert(isequal(correct, RevCountSeq(x)));
y =
9
|
3 | Pass |
%%
x = [9 1];
correct = ones(1,9);
assert(isequal(correct, RevCountSeq(x)));
y =
1 1 1 1 1 1 1 1 1
|
4 | Pass |
%%
x = [1 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9];
correct = 1:9;
assert(isequal(correct, RevCountSeq(x)));
y =
1 2 3 4 5 6 7 8 9
|
874 Solvers
Program an exclusive OR operation with logical operators
639 Solvers
274 Solvers
Create a Multiplication table matrix...
281 Solvers
376 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!