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))
|
"Low : High - Low : High - Turn around " -- Create a subindices vector
264 Solvers
Find third Side of a right triangle given hypotenuse and a side. No * - or other functions allowed
107 Solvers
Determine the number of odd integers in a vector
323 Solvers
367 Solvers
743 Solvers