Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 7 2 3 2 4 8 6];
y_correct = 3;
assert(isequal(first_six(x),y_correct))
|
2 | Pass |
x = [2 1 4 1 2 10 9 4 12 1 6 5 10 10 3 6 6 8 9 10];
y_correct = 6;
assert(isequal(first_six(x),y_correct))
|
3 | Pass |
x = [4 2 3 4 5 5 3 1 1 2];
y_correct = 'none';
assert(isequal(first_six(x),y_correct))
|
given 3 sides, find area of this triangle
680 Solvers
Create a square matrix of multiples
383 Solvers
464 Solvers
323 Solvers
220 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!