I'm curious: why did you include the [1 1]'s in your value set?
Hi, Heather. To be honest, this was an older version that I was using to test containers.Map, and ended up submitting by mistake.
You got the smallest answer by mistake? Cool!
That would be something, wouldn't it? The mistake was copy-pasting this version, with the [1 1]s, instead of a version without them. They are not needed, as you noticed.
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));
|
2 | Pass |
%%
x = 'g';
r_correct = 3;
c_correct = 5;
[r,c] = qwerty_coord(x);
assert(isequal(r,r_correct) && isequal(c,c_correct));
|
3 | Pass |
%%
x = 'm';
r_correct = 4;
c_correct = 7;
[r,c] = qwerty_coord(x);
assert(isequal(r,r_correct) && isequal(c,c_correct));
|
4 | Pass |
%%
x = '5';
r_correct = 1;
c_correct = 5;
[r,c] = qwerty_coord(x);
assert(isequal(r,r_correct) && isequal(c,c_correct));
|
1223 Solvers
1163 Solvers
Is my wife right? Now with even more wrong husband
1241 Solvers
220 Solvers
Given a 4x4 matrix, swap the two middle columns
516 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!