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 = [4,3,6; 2,5,3; 8,2,6]
y_correct = 0;
assert(isequal(is_it_zero(x),y_correct))
x =
4 3 6
2 5 3
8 2 6
y =
logical
0
|
2 | Pass |
x = [1,2,3; 4,5,6; 7,8,9]
y_correct = 1;
assert(isequal(is_it_zero(x),y_correct))
x =
1 2 3
4 5 6
7 8 9
y =
logical
1
|
3 | Pass |
x = [9,2,0; 4,4,0; 7,8,0]
y_correct = 1;
assert(isequal(is_it_zero(x),y_correct))
x =
9 2 0
4 4 0
7 8 0
y =
logical
1
|
309 Solvers
Number of digits in an integer
336 Solvers
338 Solvers
260 Solvers
302 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!