Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = 1;
b = 2;
c_correct = sqrt(5);
tolerance = 1e-12 ;
assert(abs(hypotenuse(a,b)-c_correct)<tolerance);
c =
2.2361
|
2 | Pass |
%%
a = 3;
b = 4;
c_correct = 5;
tolerance = 1e-12 ;
assert(abs(hypotenuse(a,b)-c_correct)<tolerance);
c =
5
|
3 | Pass |
%%
a = 5;
b = 12;
c_correct = 13;
tolerance = 1e-12 ;
assert(abs(hypotenuse(a,b)-c_correct)<tolerance);
c =
13
|
1786 Solvers
Get the area codes from a list of phone numbers
417 Solvers
Calculate the Levenshtein distance between two strings
303 Solvers
Project Euler: Problem 6, Natural numbers, squares and sums.
782 Solvers
Get the elements of diagonal and antidiagonal for any m-by-n matrix
196 Solvers