We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a591d2 commit 0c69046Copy full SHA for 0c69046
src/main/java/com/fishercoder/solutions/_500.java
@@ -1,22 +1,22 @@
1
package com.fishercoder.solutions;
2
3
-
4
import java.util.ArrayList;
5
import java.util.Arrays;
6
import java.util.HashSet;
7
import java.util.List;
8
import java.util.Set;
9
10
/**
+ * 500. Keyboard Row
11
+ *
12
* 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.
- * <p>
13
14
* American keyboard
15
16
17
* Example 1:
18
* Input: ["Hello", "Alaska", "Dad", "Peace"]
19
* Output: ["Alaska", "Dad"]
20
* Note:
21
* You may use one character in the keyboard more than once.
22
* You may assume the input string will only contain letters of alphabet.
0 commit comments