This solution is outdated. To rescore this solution, sign in.
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)
y_correct =
6.5938
|
3 | Pass |
user_solution = fileread('hypotenuse.m');
assert(isempty(strfind(user_solution,'sqrt')));
assert(isempty(strfind(user_solution,'^')));
|
1398 Solvers
651 Solvers
Number of 1s in a binary string
2818 Solvers
400 Solvers
Pernicious Anniversary Problem
735 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!