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));
m =
4×10 cell array
{'1'} {'2'} {'3'} {'4'} {'5'} {'6'} {'7'} {'8'} {'9'} {'0'}
{'q'} {'w'} {'e'} {'r'} {'t'} {'y'} {'u'} {'i'} {'o'} {'p'}
{'a'} {'s'} {'d'} {'f'} {'g'} {'h'} {'j'} {'k'} {'l'} {'*'}
{'z'} {'x'} {'c'} {'v'} {'b'} {'n'} {'m'} {'<'} {'>'} {'*'}
|
2 | Pass |
x = 'g';
r_correct = 3;
c_correct = 5;
[r,c] = qwerty_coord(x);
assert(isequal(r,r_correct) && isequal(c,c_correct));
m =
4×10 cell array
{'1'} {'2'} {'3'} {'4'} {'5'} {'6'} {'7'} {'8'} {'9'} {'0'}
{'q'} {'w'} {'e'} {'r'} {'t'} {'y'} {'u'} {'i'} {'o'} {'p'}
{'a'} {'s'} {'d'} {'f'} {'g'} {'h'} {'j'} {'k'} {'l'} {'*'}
{'z'} {'x'} {'c'} {'v'} {'b'} {'n'} {'m'} {'<'} {'>'} {'*'}
|
3 | Pass |
x = 'm';
r_correct = 4;
c_correct = 7;
[r,c] = qwerty_coord(x);
assert(isequal(r,r_correct) && isequal(c,c_correct));
m =
4×10 cell array
{'1'} {'2'} {'3'} {'4'} {'5'} {'6'} {'7'} {'8'} {'9'} {'0'}
{'q'} {'w'} {'e'} {'r'} {'t'} {'y'} {'u'} {'i'} {'o'} {'p'}
{'a'} {'s'} {'d'} {'f'} {'g'} {'h'} {'j'} {'k'} {'l'} {'*'}
{'z'} {'x'} {'c'} {'v'} {'b'} {'n'} {'m'} {'<'} {'>'} {'*'}
|
4 | Pass |
x = '5';
r_correct = 1;
c_correct = 5;
[r,c] = qwerty_coord(x);
assert(isequal(r,r_correct) && isequal(c,c_correct));
m =
4×10 cell array
{'1'} {'2'} {'3'} {'4'} {'5'} {'6'} {'7'} {'8'} {'9'} {'0'}
{'q'} {'w'} {'e'} {'r'} {'t'} {'y'} {'u'} {'i'} {'o'} {'p'}
{'a'} {'s'} {'d'} {'f'} {'g'} {'h'} {'j'} {'k'} {'l'} {'*'}
{'z'} {'x'} {'c'} {'v'} {'b'} {'n'} {'m'} {'<'} {'>'} {'*'}
|
17467 Solvers
Extract leading non-zero digit
1205 Solvers
Given two strings, find the maximum overlap
461 Solvers
819 Solvers
MATCH THE STRINGS (2 CHAR) very easy
250 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!