LeetCode 0500. Keyboard Row Solution in Java, Python, C++, JavaScript, Go & Rust | Explanation + Code

CoderIndeed
0
0500. Keyboard Row

Description

Given an array of strings words, return the words that can be typed using letters of the alphabet on only one row of American keyboard like the image below.

Note that the strings are case-insensitive, both lowercased and uppercased of the same letter are treated as if they are at the same row.

In the American keyboard:

  • the first row consists of the characters "qwertyuiop",
  • the second row consists of the characters "asdfghjkl", and
  • the third row consists of the characters "zxcvbnm".

 

Example 1:

Input: words = ["Hello","Alaska","Dad","Peace"]

Output: ["Alaska","Dad"]

Explanation:

Both "a" and "A" are in the 2nd row of the American keyboard due to case insensitivity.

Example 2:

Input: words = ["omk"]

Output: []

Example 3:

Input: words = ["adsdf","sfd"]

Output: ["adsdf","sfd"]

 

Constraints:

  • 1 <= words.length <= 20
  • 1 <= words[i].length <= 100
  • words[i] consists of English letters (both lowercase and uppercase). 

Solutions

Solution 1

PythonJavaC++GoTypeScriptC#
class Solution: def findWords(self, words: List[str]) -> List[str]: s1 = set('qwertyuiop') s2 = set('asdfghjkl') s3 = set('zxcvbnm') ans = [] for w in words: s = set(w.lower()) if s <= s1 or s <= s2 or s <= s3: ans.append(w) return ans(code-box)

Solution 2

Python
class Solution: def findWords(self, words: List[str]) -> List[str]: ans = [] s = "12210111011122000010020202" for w in words: x = s[ord(w[0].lower()) - ord('a')] if all(s[ord(c.lower()) - ord('a')] == x for c in w): ans.append(w) return ans(code-box)

Post a Comment

0Comments

Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Check Now
Accept !