1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-16 16:36:56 +02:00
LeetCode/kt/substring-with-concatenation-of-all-words.kt
Matej Focko aaaebf1d52
style(kt): reformat the files
Signed-off-by: Matej Focko <me@mfocko.xyz>
2024-05-17 18:23:38 +02:00

35 lines
952 B
Kotlin

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()
}
}