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))
|
The Hitchhiker's Guide to MATLAB
2874 Solvers
345 Solvers
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
511 Solvers
321 Solvers
275 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!