Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = 8;
b=6;
y_correct = 24;
assert(isequal(mul(a,b),y_correct))
|
2 | Pass |
a = 13;
b=17;
y_correct = 221;
assert(isequal(mul(a,b),y_correct))
|
3 | Pass |
a = 12;
b=18;
y_correct = 36;
assert(isequal(mul(a,b),y_correct))
|
1137 Solvers
How to find the position of an element in a vector without using the find function
2317 Solvers
Output any real number that is neither positive nor negative
250 Solvers
163 Solvers
find the surface area of a cube
214 Solvers