All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g3201_3300.s3295_report_spam_message.Solution.kt Maven / Gradle / Ivy

package g3201_3300.s3295_report_spam_message

// #Medium #Array #String #Hash_Table #2024_09_24_Time_782_ms_(74.19%)_Space_109.6_MB_(38.71%)

class Solution {
    fun reportSpam(message: Array, bannedWords: Array): Boolean {
        val bannedUnique: MutableSet = mutableSetOf(*bannedWords)
        var bannedCount = 0
        for (msg in message) {
            if (bannedUnique.contains(msg)) {
                bannedCount++
            }
            if (bannedCount == 2) {
                return true
            }
        }
        return false
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy