Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 5;
y = 8;
A_correct = 12;
tolerance = 1e-12;
assert(abs(isocelesArea(x,y)-A_correct)<tolerance)
h =
3
A =
12
|
2 | Pass |
%%
x = 2;
y = 2;
A_correct = sqrt(3);
tolerance = 1e-12;
assert(abs(isocelesArea(x,y)-A_correct)<tolerance)
h =
1.7321
A =
1.7321
|
3 | Pass |
%%
x = 10;
y = 2;
A_correct = sqrt(99);
tolerance = 1e-12;
assert(abs(isocelesArea(x,y)-A_correct)<tolerance)
h =
9.9499
A =
9.9499
|
The Goldbach Conjecture, Part 2
961 Solvers
Read a column of numbers and interpolate missing data
797 Solvers
MATCH THE STRINGS (2 CHAR) very easy
194 Solvers
244 Solvers
A Simple Tide Gauge with MATLAB
300 Solvers