This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a=1;
b=-1;
c=1;
y_correct = 1;
assert(isequal(your_fcn_name(a,b,c),y_correct))
|
2 | Pass |
a=1;
b=0;
c=0;
y_correct = 0;
assert(isequal(your_fcn_name(a,b,c),y_correct))
|
3 | Pass |
a=1;
b=-1;
c=-2;
y_correct = 0;
assert(isequal(your_fcn_name(a,b,c),y_correct))
|
582 Solvers
323 Solvers
357 Solvers
151 Solvers
359 Solvers