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 | Fail |
x = '0000';
y_correct = 0;
assert(isequal(one(x),y_correct));
m =
0
n =
logical
0
y =
1
|
2 | Fail |
x = '111';
y_correct = 3;
assert(isequal(one(x),y_correct));
m =
111
n =
logical
1
y =
1
|
3 | Fail |
x = '1100101';
y_correct = 4;
assert(isequal(one(x),y_correct));
m =
1100101
n =
logical
1
y =
1
|
Back to basics 12 - Input Arguments
525 Solvers
248 Solvers
284 Solvers
249 Solvers
272 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!