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))
|
3239 Solvers
How to find the position of an element in a vector without using the find function
2477 Solvers
Make an awesome ramp for a tiny motorcycle stuntman
334 Solvers
Create a Multiplication table matrix...
283 Solvers
Create a two dimensional zero matrix
355 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!