Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 347 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 347 Bytes

54.Keyboard Row

Description

Given a List of words, return the words that can be typed using letters of alphabet on only one row's of American keyboard like the image below.

Example

Input: ['Hello', 'Alaska', 'Dad', 'Peace']
Output: ['Alaska', 'Dad']

From

LeetCode