Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = 1;
b = 2;
c_correct = 3;
assert(isequal(add_two_numbers(a,b),c_correct))
ans =
3
|
2 | Pass |
%%
a = 17;
b = 2;
c_correct = 19;
assert(isequal(add_two_numbers(a,b),c_correct))
ans =
19
|
3 | Pass |
%%
a = -5;
b = 2;
c_correct = -3;
assert(isequal(add_two_numbers(a,b),c_correct))
ans =
-3
|
261 Solvers
Back to basics 9 - Indexed References
392 Solvers
434 Solvers
351 Solvers
Create an n-by-n null matrix and fill with ones certain positions
270 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!