Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x=[ 1 5 4;
8 6 3;
0 9 7];
y_correct=[ 1 5 4;
8 6 3;
2 9 7];
assert(isequal(sudoku(x),y_correct))
a =
3
b =
43
c =
2
x =
1 5 4
8 6 3
2 9 7
|
2 | Pass |
x=[ 8 3 0;
2 7 1;
5 4 6];
y_correct=[ 8 3 9;
2 7 1;
5 4 6];
assert(isequal(sudoku(x),y_correct))
a =
7
b =
36
c =
9
x =
8 3 9
2 7 1
5 4 6
|
Basics: 'Find the eigenvalues of given matrix
323 Solvers
250 Solvers
185 Solvers
283 Solvers
520 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!