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 |
sq = 2;
ci = 1;
y_correct = (sq>ci);
assert(isequal(sqci(sq,ci),y_correct))
|
2 | Pass |
sq = rand;
ci = rand;
y_correct = (4*sq^2>pi*ci^2);
assert(isequal(sqci(sq,ci),y_correct))
|
3 | Pass |
sq = 0;
ci = 0;
y_correct = (0>0);
assert(isequal(sqci(sq,ci),y_correct))
|
4 | Pass |
sq = 100;
ci = 4;
y_correct = (7>3);
assert(isequal(sqci(sq,ci),y_correct))
|
5 | Pass |
sq = 21;
ci = 127;
y_correct = (3>7);
assert(isequal(sqci(sq,ci),y_correct))
|
1529 Solvers
1313 Solvers
Back to basics 12 - Input Arguments
467 Solvers
251 Solvers
345 Solvers