We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53fd425 commit 5e47bc7Copy full SHA for 5e47bc7
src/main/java/com/fishercoder/solutions/_500.java
@@ -6,21 +6,6 @@
6
import java.util.List;
7
import java.util.Set;
8
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.
13
14
- * American keyboard
15
16
- * Example 1:
17
- * Input: ["Hello", "Alaska", "Dad", "Peace"]
18
- * Output: ["Alaska", "Dad"]
19
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.
23
- */
24
public class _500 {
25
26
public String[] findWords(String[] words) {
0 commit comments