Problem 50. QWERTY coordinates
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
Tran Tran
on 19 Mar 2022
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.
Solution Comments
Show commentsProblem Recent Solvers2300
Suggested Problems
-
Program an exclusive OR operation with logical operators
725 Solvers
-
Remove the two elements next to NaN value
658 Solvers
-
Set the array elements whose value is 13 to 0
1377 Solvers
-
624 Solvers
-
Find the sides of an isosceles triangle when given its area and height from its base to apex
1975 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!