Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 2;
y_correct = 4;
assert(isequal(square(x),y_correct))
y =
4
|
2 | Pass |
x = 7;
y_correct = 49;
assert(isequal(square(x),y_correct))
y =
49
|
3 | Pass |
x = 15;
y_correct = 225;
assert(isequal(square(x),y_correct))
y =
225
|
Find all elements less than 0 or greater than 10 and replace them with NaN
11630 Solvers
690 Solvers
Is this triangle right-angled?
1375 Solvers
Remove All elements less than 5
79 Solvers
284 Solvers