forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_1002.java
39 lines (37 loc) · 1.23 KB
/
_1002.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
package com.fishercoder.solutions;
import java.util.ArrayList;
import java.util.List;
public class _1002 {
public static class Solution1 {
public List<String> commonChars(String[] A) {
int[][] charCount = new int[A.length][26];
for (int i = 0; i < A.length; i++) {
for (char c : A[i].toCharArray()) {
charCount[i][c - 'a']++;
}
}
List<String> result = new ArrayList<>();
for (int i = 0; i < 26; i++) {
while (charCount[0][i] != 0) {
char c = (char) (i + 'a');
boolean valid = true;
charCount[0][i]--;
for (int j = 1; j < A.length; j++) {
if (charCount[j][i] == 0) {
valid = false;
break;
} else {
charCount[j][i]--;
}
}
if (!valid) {
break;
} else {
result.add("" + c);
}
}
}
return result;
}
}
}