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
|
Read a column of numbers and interpolate missing data
1235 Solvers
Program an exclusive OR operation with logical operators
639 Solvers
Make a random, non-repeating vector.
2797 Solvers
Relative ratio of "1" in binary number
392 Solvers
There are 10 types of people in the world
310 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!