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
|
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
|
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
|
312 Solvers
Project Euler: Problem 2, Sum of even Fibonacci
835 Solvers
232 Solvers
Find the Nth Root of a Given Number
187 Solvers
273 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!