Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
a = [1 2 2 2 1 3 2 1 4 5 1];
y_correct = 2;
assert(isequal(longrun(a),y_correct))
|
2 | Fail |
a = [1 1 1 2 2 2 3 3 3];
y_correct = [1 2 3];
assert(isequal(longrun(a),y_correct))
|
3 | Fail |
a = [-2 -2 -2 -2 -1 0 3];
y_correct = -2;
assert(isequal(longrun(a),y_correct))
|
4 | Fail |
a=[0 1 1 1 0 2 2 0 1 1 1 0];
y_correct = [1 1];
assert(isequal(longrun(a),y_correct))
|
5 | Fail |
a=[3 3 3 2 2 1 6]';
y_correct=3;
assert(isequal(longrun(a),y_correct))
|
6 | Fail |
a=[3 3 3 2 2 2 1 6]';
y_correct=[3 2]';
assert(isequal(longrun(a),y_correct))
|
7 | Fail |
a=[1 2 3 4 5]';
y_correct=a;
assert(isequal(longrun(a),y_correct))
|
1092 Solvers
Find state names that start with the letter N
598 Solvers
Number of 1s in the Binary Representation of a Number
356 Solvers
6360 Solvers
351 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!