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))
val =
2
|
2 | Pass |
a = [1 1 1 2 2 2 3 3 3];
y_correct = [1 2 3];
assert(isequal(longrun(a),y_correct))
val =
1 2 3
|
3 | Pass |
a = [-2 -2 -2 -2 -1 0 3];
y_correct = -2;
assert(isequal(longrun(a),y_correct))
val =
-2
|
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))
val =
1 1
|
5 | Pass |
a=[3 3 3 2 2 1 6]';
y_correct=3;
assert(isequal(longrun(a),y_correct))
val =
3
|
6 | Pass |
a=[3 3 3 2 2 2 1 6]';
y_correct=[3 2]';
assert(isequal(longrun(a),y_correct))
val =
3
2
|
7 | Pass |
a=[1 2 3 4 5]';
y_correct=a;
assert(isequal(longrun(a),y_correct))
val =
1
2
3
4
5
|
1092 Solvers
Program an exclusive OR operation with logical operators
639 Solvers
Construct an index vector from two input vectors in vectorized fashion
175 Solvers
Remove element(s) from cell array
373 Solvers
360 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!