Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
b = 1;
c = 2;
a_correct = sqrt(3);
tolerance = 1e-12;
assert(abs(calculate_short_side(b,c)-a_correct)<tolerance);
a =
1.7321
|
2 | Pass |
%%
b = 4;
c = 5;
a_correct = 3;
tolerance = 1e-12;
assert(abs(calculate_short_side(b,c)-a_correct)<tolerance);
a =
3
|
3 | Pass |
%%
b = 12;
c = 13;
a_correct = 5;
tolerance = 1e-12;
assert(abs(calculate_short_side(b,c)-a_correct)<tolerance);
a =
5
|
4 | Pass |
%%
b = 8;
c = 10;
a_correct = 6;
tolerance = 1e-12;
assert(abs(calculate_short_side(b,c)-a_correct)<tolerance);
a =
6
|
232 Solvers
Implement simple rotation cypher
805 Solvers
Rotate input square matrix 90 degrees CCW without rot90
310 Solvers
The sum of the numbers in the vector
341 Solvers
168 Solvers