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)));
y =
2 5 0 0 0 0 0 0
y =
2 5 1 2 0 0 0 0
y =
2 5 1 2 4 1 0 0
y =
2 5 1 2 4 1 1 3
|
2 | Pass |
x = [9];
correct = [1 9];
assert(isequal(correct, CountSeq(x)));
y =
1 9
|
3 | Pass |
x = ones(1,9);
correct = [9 1];
assert(isequal(correct, CountSeq(x)));
y =
9 1
|
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)));
y =
1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
y =
1 1 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0
y =
1 1 1 2 1 3 0 0 0 0 0 0 0 0 0 0 0 0
y =
1 1 1 2 1 3 1 4 0 0 0 0 0 0 0 0 0 0
y =
1 1 1 2 1 3 1 4 1 5 0 0 0 0 0 0 0 0
y =
1 1 1 2 1 3 1 4 1 5 1 6 0 0 0 0 0 0
y =
1 1 1 2 1 3 1 4 1 5 1 6 1 7 0 0 0 0
y =
1 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 0 0
y =
1 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9
|
5 | Pass |
x = [1 2 2 1];
correct = [1 1 2 2 1 1];
assert(isequal(correct, CountSeq(x)));
|
1143 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
277 Solvers
546 Solvers
436 Solvers
2449 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!