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))
list =
7
list =
8
list =
2
list =
3
list =
Empty matrix: 1-by-0
x =
8 3 4 5 6 7 1 2 9
list =
5
list =
6
list =
1
list =
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))
list =
2
list =
6
list =
1
list =
Empty matrix: 0-by-1
x =
3 5 7
1 6 8
4 2 9
list =
4
list =
5
list =
7
list =
8
list =
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))
list =
Empty matrix: 0-by-1
x =
2
8
1
7
3
9
6
5
4
list =
1
list =
5
list =
9
list =
8
list =
7
list =
4
list =
2
list =
6
|
19329 Solvers
Find perfect placement of non-rotating dominoes (easier)
240 Solvers
Set the array elements whose value is 13 to 0
935 Solvers
219 Solvers
270 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!