-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path1002-FindCommonCharacters.kt
36 lines (32 loc) · 1.09 KB
/
1002-FindCommonCharacters.kt
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
/**
*
* 1002. Find Common Characters
* https://leetcode.com/problems/find-common-characters/
*
*/
class Solution {
fun commonChars(wordList: Array<String>): List<String> {
val commonChars = mutableListOf<String>()
val wordsCharOcurrence: MutableList<IntArray> = mutableListOf()
wordList.forEach { word ->
wordsCharOcurrence.add(IntArray(26))
val currentCharOccurrences = wordsCharOcurrence[wordsCharOcurrence.size - 1]
word.forEach { letter ->
currentCharOccurrences[letter - 'a'] += 1
}
}
for (index in 0 until 26) {
var minOccurrences = Integer.MAX_VALUE
wordsCharOcurrence.forEach {charOcurrences ->
val currentLetterCount = charOcurrences[index]
minOccurrences = Math.min(currentLetterCount, minOccurrences)
}
if (minOccurrences > 0) {
commonChars.addAll(CharArray(minOccurrences)
{ _ -> (index.toChar() + 'a'.toInt())}
.map { it.toString() })
}
}
return commonChars
}
}