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 = 2;
c = 1;
y_correct = -1;
assert(isequal(solution(a,b,c),y_correct))
|
2 | Pass |
a = 1;
b = 0;
c = 1;
y_correct = [-i i];
assert(isequal(solution(a,b,c),y_correct))
|
3 | Pass |
a = 1;
b = -2;
c = -3;
y_correct = [3 -1];
assert(isequal(solution(a,b,c),y_correct))
|
Find the alphabetic word product
1997 Solvers
Back to basics 19 - character types
189 Solvers
357 Solvers
How many monitors are connected ?
108 Solvers
The Answer to Life, the Universe, and Everything
312 Solvers