Given a List of words, return the words that can be typed using letters of   alphabet on only one row's of American keyboard.       For example:   Input: ["Hello", "Alaska", "Dad", "Peace"]   Output: ["Alaska", "Dad"]       Reference: https://leetcode.com/problems/keyboard-row/description/.     """

icon
Related questions
icon
Concept explainers
Question
Given a List of words, return the words that can be typed using letters of
  alphabet on only one row's of American keyboard.
   
  For example:
  Input: ["Hello", "Alaska", "Dad", "Peace"]
  Output: ["Alaska", "Dad"]
   
 

Reference: https://leetcode.com/problems/keyboard-row/description/.

 

  """
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Types of Linked List
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, data-structures-and-algorithms and related others by exploring similar questions and additional content below.