Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [8 3 4 0 6 7 1 2 9];
y_correct = [8 3 4 5 6 7 1 2 9];
assert(isequal(solveSudokuRow(x),y_correct))
y =
8 3 4 0 6 7 1 2 9
y =
8 3 4 5 6 7 1 2 9
|
2 | Pass |
x = [ 3 5 7
1 6 8
0 2 9 ];
y_correct = ...
[ 3 5 7
1 6 8
4 2 9 ];
assert(isequal(solveSudokuRow(x),y_correct))
y =
3 5 7
1 6 8
0 2 9
y =
3 5 7
1 6 8
4 2 9
|
3 | Pass |
x = [ 2 8 0 7 3 9 6 5 4 ]';
y_correct = [ 2 8 1 7 3 9 6 5 4 ]';
assert(isequal(solveSudokuRow(x),y_correct))
y =
2
8
0
7
3
9
6
5
4
y =
2
8
1
7
3
9
6
5
4
|
138 Solvers
253 Solvers
07 - Common functions and indexing 2
255 Solvers
600 Solvers
465 Solvers