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));
A =
'1234567890qwertyuiopasdfghjkl;zxcvbnm,./'
B =
'1234567890'
C =
'qwertyuiop'
D =
'asdfghjkl'
E =
'zxcvbnm'
r =
1
c =
1
|
2 | Pass |
x = 'g';
r_correct = 3;
c_correct = 5;
[r,c] = qwerty_coord(x);
assert(isequal(r,r_correct) && isequal(c,c_correct));
A =
'1234567890qwertyuiopasdfghjkl;zxcvbnm,./'
B =
'1234567890'
C =
'qwertyuiop'
D =
'asdfghjkl'
E =
'zxcvbnm'
r =
3
c =
5
|
3 | Pass |
x = 'm';
r_correct = 4;
c_correct = 7;
[r,c] = qwerty_coord(x);
assert(isequal(r,r_correct) && isequal(c,c_correct));
A =
'1234567890qwertyuiopasdfghjkl;zxcvbnm,./'
B =
'1234567890'
C =
'qwertyuiop'
D =
'asdfghjkl'
E =
'zxcvbnm'
r =
4
c =
7
|
4 | Pass |
x = '5';
r_correct = 1;
c_correct = 5;
[r,c] = qwerty_coord(x);
assert(isequal(r,r_correct) && isequal(c,c_correct));
A =
'1234567890qwertyuiopasdfghjkl;zxcvbnm,./'
B =
'1234567890'
C =
'qwertyuiop'
D =
'asdfghjkl'
E =
'zxcvbnm'
r =
1
c =
5
|
1263 Solvers
235 Solvers
432 Solvers
Deleting an element in a matrix
325 Solvers
664 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!