Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
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))
|
2 | Fail |
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))
|
Find the numeric mean of the prime numbers in a matrix.
6781 Solvers
1223 Solvers
1365 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
297 Solvers
275 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!