Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = [1 2 3 4];
y_correct = [2 3 4];
assert(isequal(last_three(x),y_correct))
|
2 | Fail |
x = [5;2;8;6;7;2;3];
y_correct = [7;2;3];
assert(isequal(last_three(x),y_correct))
|
3 | Fail |
x = [1.2 3.6 2.5 2.7 2.8 8.6 9.2 2.7 3.7 -4.9];
y_correct = [2.7 3.7 -4.9];
assert(isequal(last_three(x),y_correct))
|
Program an exclusive OR operation with logical operators
639 Solvers
Return unique values without sorting
588 Solvers
260 Solvers
Find the area of the four walls
202 Solvers
273 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!