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 = 0;
y_correct = 1;
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = 50;
y_correct = 0;
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Pass |
x = 7;
y_correct = 0;
assert(isequal(your_fcn_name(x),y_correct))
|
4 | Pass |
x = 343;
y_correct = 0;
assert(isequal(your_fcn_name(x),y_correct))
|
8399 Solvers
Arrange Vector in descending order
1801 Solvers
Create a Multiplication table matrix...
226 Solvers
100 Solvers
Sum positive elements of matrix.
48 Solvers