forked from Akshaya-Amar/LeetCodeSolutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
KeyboardRow.java
47 lines (31 loc) · 872 Bytes
/
KeyboardRow.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
Source: https://leetcode.com/problems/keyboard-row/
*/
class Solution {
public String[] findWords(String[] words) {
String[] rows = {"qwertyuiop", "asdfghjkl", "zxcvbnm"};
List<String> list = new ArrayList<>();
for(String word : words){
String element = word.toLowerCase();
if(isValid(rows[0], element) || isValid(rows[1], element) || isValid(rows[2], element)) {
list.add(word);
}
}
return list.toArray(new String[list.size()]);
}
private boolean isValid(String row, String element){
int elementLen = element.length();
int rowLen = row.length();
for(int i = 0; i < elementLen; ++i){
char ch = element.charAt(i);
int j = 0;
while(j < rowLen && ch != row.charAt(j)) {
++j;
}
if(j == rowLen) {
return false;
}
}
return true;
}
}