Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 10;
m=2;
y_correct = 1814400;
assert(isequal(your_fcn_name(m,n),y_correct))
|
2 | Pass |
n = 4;
m=3;
y_correct = 4;
assert(isequal(your_fcn_name(m,n),y_correct))
|
3 | Pass |
n = 10;
m=5;
y_correct = 30240;
assert(isequal(your_fcn_name(m,n),y_correct))
|
Project Euler: Problem 9, Pythagorean numbers
282 Solvers
Back to basics 17 - white space
245 Solvers
163 Solvers
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
511 Solvers
2144 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!