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))
xvec =
0 1 2 3 4 6 7 8 9
missingnum =
5
a =
4
x =
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))
xvec =
0 1 2 3 5 6 7 8 9
missingnum =
4
a =
3
x =
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))
xvec =
0 2 3 4 5 6 7 8 9
missingnum =
1
a =
3
x =
2
8
1
7
3
9
6
5
4
|
Find state names that start with the letter N
598 Solvers
"Low : High - Low : High - Turn around " -- Create a subindices vector
320 Solvers
Compute a dot product of two vectors x and y
750 Solvers
Getting the indices from a vector
3208 Solvers
251 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!