Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x1 = 4;
x2 = 4;
h1 = 3;
y_correct = 6;
assert(isequal(findHeight(x1,x2,h1),y_correct))
|
2 | Pass |
x1 = 4;
x2 = 8;
h1 = 3;
y_correct = 9;
assert(isequal(findHeight(x1,x2,h1),y_correct))
|
3 | Pass |
x1 = 4;
x2 = 12;
h1 = 3;
y_correct = 12;
assert(isequal(findHeight(x1,x2,h1),y_correct))
|
4 | Pass |
x1 = 4;
x2 = 16;
h1 = 3;
y_correct = 15;
assert(isequal(findHeight(x1,x2,h1),y_correct))
|
5 | Pass |
x1 = 4;
x2 = 20;
h1 = 3;
y_correct = 18;
assert(isequal(findHeight(x1,x2,h1),y_correct))
|
6 | Pass |
x1 = 4;
x2 = 24;
h1 = 3;
y_correct = 21;
assert(isequal(findHeight(x1,x2,h1),y_correct))
|
7 | Pass |
x1 = 4;
x2 = 12;
h1 = 5;
y_correct = 20;
assert(isequal(findHeight(x1,x2,h1),y_correct))
|
8 | Pass |
x1 = 4;
x2 = 16;
h1 = 10;
y_correct = 50;
assert(isequal(findHeight(x1,x2,h1),y_correct))
|
9 | Pass |
x1 = 2;
x2 = 4;
h1 = 5;
y_correct = 15;
assert(isequal(findHeight(x1,x2,h1),y_correct))
|
10 | Pass |
x1 = 3;
x2 = 6;
h1 = 4;
y_correct = 12;
assert(isequal(findHeight(x1,x2,h1),y_correct))
|
Find common elements in matrix rows
1232 Solvers
Back to basics 17 - white space
245 Solvers
Longest run of consecutive numbers
1661 Solvers
Celsius to Fahrenheit converter
389 Solvers
992 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!