Given a lowercase letter or a digit as input, return the row where that letter appears on a standard U.S. QWERTY keyboard and its position starting from the leftmost digit or letter on that row.
Examples:
Input key = 'a'
Output r = 3
c = 1
Input key = '0'
Output r = 1
c = 10
Input key = 'y'
Output r = 2
c = 6
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers2366
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15780 Solvers
-
Return the 3n+1 sequence for n
8488 Solvers
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
1991 Solvers
-
Generate a vector like 1,2,2,3,3,3,4,4,4,4
13625 Solvers
-
888 Solvers
More from this Author96
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Create a key board matrix and find ez.Should add more space ' ' char to fill the gap in each row cause number of elements in rows are not equally.