Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = [1 2 2 2 1 3 2 1 4 5 1];
y_correct = 2;
assert(isequal(longrun(a),y_correct))
|
2 | Pass |
a = [1 1 1 2 2 2 3 3 3];
y_correct = [1 2 3];
assert(isequal(longrun(a),y_correct))
|
3 | Pass |
a = [-2 -2 -2 -2 -1 0 3];
y_correct = -2;
assert(isequal(longrun(a),y_correct))
|
4 | Pass |
a=[0 1 1 1 0 2 2 0 1 1 1 0];
y_correct = [1 1];
assert(isequal(longrun(a),y_correct))
|
5 | Pass |
a=[3 3 3 2 2 1 6]';
y_correct=3;
assert(isequal(longrun(a),y_correct))
|
6 | Pass |
a=[3 3 3 2 2 2 1 6]';
y_correct=[3 2]';
assert(isequal(longrun(a),y_correct))
|
7 | Pass |
a=[1 2 3 4 5]';
y_correct=a;
assert(isequal(longrun(a),y_correct))
|
Find the alphabetic word product
2321 Solvers
3892 Solvers
How to find the position of an element in a vector without using the find function
2477 Solvers
Reverse the elements of an array
687 Solvers
Integer Sequence - II : New Fibonacci
252 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!