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 |
x = 1;
y=1;
z_correct = 1;
assert(isequal(dividing(x,y),z_correct))
|
2 | Pass |
x = 1;
y=0;
z_correct = 'ERROR';
assert(isequal(dividing(x,y),z_correct))
|
3 | Pass |
x = Inf;
y=-Inf;
z_correct = 'ERROR';
assert(isequal(dividing(x,y),z_correct))
|
4 | Pass |
x = 1;
y=NaN;
z_correct = 'ERROR';
assert(isequal(dividing(x,y),z_correct))
|
2526 Solvers
Find the alphabetic word product
1997 Solvers
413 Solvers
184 Solvers
58 Solvers