Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = 1;
b = 2;
c_correct = 3;
assert(isequal(add_two_numbers(a,b),c_correct))
|
2 | Pass |
a = 17;
b = 2;
c_correct = 19;
assert(isequal(add_two_numbers(a,b),c_correct))
|
3 | Pass |
a = -5;
b = 2;
c_correct = -3;
assert(isequal(add_two_numbers(a,b),c_correct))
|
Get the area codes from a list of phone numbers
532 Solvers
Back to basics 9 - Indexed References
392 Solvers
Who has power to do everything in this world?
318 Solvers
convert matrix to single column
306 Solvers
286 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!