1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/kt/substring-with-concatenation-of-all-words.kt

36 lines
952 B
Kotlin
Raw Normal View History

class Solution {
private fun buildTable(words: Sequence<String>): Map<String, Int> {
val table = mutableMapOf<String, Int>()
words.forEach {
table.put(it, 1 + table.getOrElse(it) { 0 })
}
return table
}
private fun buildTable(
s: String,
length: Int,
): Map<String, Int> = buildTable(s.chunked(length).asSequence())
fun findSubstring(
s: String,
words: Array<String>,
): List<Int> {
val expectedFrequencies = buildTable(words.asSequence())
val wordLen = words.first().length
val windowSize = wordLen * words.size
return s
.windowed(windowSize)
.zip(s.indices)
.filter { (window, _) ->
val frequencies = buildTable(window, wordLen)
frequencies == expectedFrequencies
}
.map { (_, idx) -> idx }
.toList()
}
}