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))
pocet =
3
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))
pocet =
3
val =
1 2 3
|
3 | Pass |
a = [-2 -2 -2 -2 -1 0 3];
y_correct = -2;
assert(isequal(longrun(a),y_correct))
pocet =
4
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))
pocet =
3
val =
1 1
|
5 | Pass |
a=[3 3 3 2 2 1 6]';
y_correct=3;
assert(isequal(longrun(a),y_correct))
pocet =
3
val =
3
|
6 | Pass |
a=[3 3 3 2 2 2 1 6]';
y_correct=[3 2]';
assert(isequal(longrun(a),y_correct))
pocet =
3
val =
3
2
|
7 | Pass |
a=[1 2 3 4 5]';
y_correct=a;
assert(isequal(longrun(a),y_correct))
pocet =
1
val =
1
2
3
4
5
|
9831 Solvers
516 Solvers
Generate a vector like 1,2,2,3,3,3,4,4,4,4
3610 Solvers
Pernicious Anniversary Problem
735 Solvers
Spot the First Occurrence of 5
365 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!