2022-08-17 11:48:21 +02:00
|
|
|
class Solution {
|
2024-05-17 18:23:38 +02:00
|
|
|
val mapping =
|
|
|
|
arrayOf(
|
|
|
|
".-",
|
|
|
|
"-...",
|
|
|
|
"-.-.",
|
|
|
|
"-..",
|
|
|
|
".",
|
|
|
|
"..-.",
|
|
|
|
"--.",
|
|
|
|
"....",
|
|
|
|
"..",
|
|
|
|
".---",
|
|
|
|
"-.-",
|
|
|
|
".-..",
|
|
|
|
"--",
|
|
|
|
"-.",
|
|
|
|
"---",
|
|
|
|
".--.",
|
|
|
|
"--.-",
|
|
|
|
".-.",
|
|
|
|
"...",
|
|
|
|
"-",
|
|
|
|
"..-",
|
|
|
|
"...-",
|
|
|
|
".--",
|
|
|
|
"-..-",
|
|
|
|
"-.--",
|
|
|
|
"--..",
|
|
|
|
)
|
2022-08-17 11:48:21 +02:00
|
|
|
|
|
|
|
private fun charToMorse(c: Char): String = mapping[c - 'a']
|
|
|
|
|
|
|
|
fun uniqueMorseRepresentations(words: Array<String>): Int =
|
|
|
|
words
|
|
|
|
.map { word ->
|
|
|
|
word.map { charToMorse(it) }.joinToString(separator = "")
|
|
|
|
}
|
|
|
|
.toSet()
|
|
|
|
.size
|
|
|
|
}
|
|
|
|
|
|
|
|
fun main() {
|
|
|
|
val s = Solution()
|
|
|
|
|
|
|
|
check(s.uniqueMorseRepresentations(arrayOf("gin", "zen", "gig", "msg")) == 2)
|
|
|
|
check(s.uniqueMorseRepresentations(arrayOf("a")) == 1)
|
|
|
|
}
|