Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = 1;
b = 2;
c_correct = 3;
assert(isequal(add_two_numbers(a,b),c_correct))
c =
3
|
2 | Pass |
a = 17;
b = 2;
c_correct = 19;
assert(isequal(add_two_numbers(a,b),c_correct))
c =
19
|
3 | Pass |
a = -5;
b = 2;
c_correct = -3;
assert(isequal(add_two_numbers(a,b),c_correct))
c =
-3
|
What is the next step in Conway's Life?
424 Solvers
Program an exclusive OR operation with logical operators
597 Solvers
Back to basics 22 - Rotate a matrix
682 Solvers
299 Solvers
309 Solvers