Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = 3;
b = 4;
c = 5;
flag_correct = true;
assert(isequal(isRightAngled(a,b,c),flag_correct))
x =
5
|
2 | Pass |
%%
a = 2;
b = 3;
c = 4;
flag_correct = false;
assert(isequal(isRightAngled(a,b,c),flag_correct))
x =
3.6056
|
3 | Pass |
%%
a = 5;
b = 12;
c = 13;
flag_correct = true;
assert(isequal(isRightAngled(a,b,c),flag_correct))
x =
13
|
Return the first and last character of a string
3449 Solvers
299 Solvers
445 Solvers
Is this is a Tic Tac Toe X Win?
438 Solvers
1822 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!