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 | Fail |
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))
count =
5
y =
8 3 4 0 5 7 1 2 9
|
2 | Fail |
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))
count =
4
y =
3 4 7
1 6 8
0 2 9
|
3 | Fail |
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))
count =
1
y =
1
8
0
7
3
9
6
5
4
|
Find state names that start with the letter N
465 Solvers
167 Solvers
Check if number exists in vector
2316 Solvers
find the maximum element of the matrix
254 Solvers
197 Solvers