Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = 3;
b= 4;
y_correct = 5;
assert(abs(hypotenuse(a,b)-y_correct)<0.0001)
|
2 | Pass |
a = 2;
b = pi * 2;
y_correct = sqrt(a^2+b^2);
assert(abs(hypotenuse(a,b)-y_correct)<0.0001)
|
3 | Pass |
a = randi(10);
b = randi(13);
y_correct = sqrt(a^2+b^2);
assert(abs(hypotenuse(a,b)-y_correct)<0.0001)
|
4 | Pass |
user_solution = fileread('hypotenuse.m');
assert(isempty(strfind(user_solution,'^')));
|
5 | Pass |
assessFunctionAbsence({'sqrt'}, 'FileName', 'hypotenuse.m');
|
739 Solvers
The Goldbach Conjecture, Part 2
1284 Solvers
444 Solvers
Find out sum and carry of Binary adder
379 Solvers
Sum positive elements of matrix.
71 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!