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))
|
2 | Pass |
%%
a = 2;
b = 3;
c = 4;
flag_correct = false;
assert(isequal(isRightAngled(a,b,c),flag_correct))
|
3 | Pass |
%%
a = 5;
b = 12;
c = 13;
flag_correct = true;
assert(isequal(isRightAngled(a,b,c),flag_correct))
|
Select every other element of a vector
20329 Solvers
Find the two most distant points
1628 Solvers
Project Euler: Problem 8, Find largest product in a large string of numbers
315 Solvers
Create a square matrix of multiples
383 Solvers
Magic is simple (for beginners)
2749 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!