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 | Pass |
%%
x = '1';
r_correct = 1;
c_correct = 1;
[r,c] = qwerty_coord(x);
assert(isequal(r,r_correct) && isequal(c,c_correct));
rows =
'1234567890'
'qwertyuiop'
'asdfghjkl'
'zxcvbnm'
|
2 | Pass |
%%
x = 'g';
r_correct = 3;
c_correct = 5;
[r,c] = qwerty_coord(x);
assert(isequal(r,r_correct) && isequal(c,c_correct));
rows =
'1234567890'
'qwertyuiop'
'asdfghjkl'
'zxcvbnm'
|
3 | Pass |
%%
x = 'm';
r_correct = 4;
c_correct = 7;
[r,c] = qwerty_coord(x);
assert(isequal(r,r_correct) && isequal(c,c_correct));
rows =
'1234567890'
'qwertyuiop'
'asdfghjkl'
'zxcvbnm'
|
4 | Pass |
%%
x = '5';
r_correct = 1;
c_correct = 5;
[r,c] = qwerty_coord(x);
assert(isequal(r,r_correct) && isequal(c,c_correct));
rows =
'1234567890'
'qwertyuiop'
'asdfghjkl'
'zxcvbnm'
|
Check to see if a Sudoku Puzzle is Solved
232 Solvers
Find out missing number from a vector of 9 elements
207 Solvers
392 Solvers
2993 Solvers
205 Solvers