mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
48 lines
924 B
Kotlin
48 lines
924 B
Kotlin
|
class Solution {
|
||
|
val mapping = arrayOf(
|
||
|
".-",
|
||
|
"-...",
|
||
|
"-.-.",
|
||
|
"-..",
|
||
|
".",
|
||
|
"..-.",
|
||
|
"--.",
|
||
|
"....",
|
||
|
"..",
|
||
|
".---",
|
||
|
"-.-",
|
||
|
".-..",
|
||
|
"--",
|
||
|
"-.",
|
||
|
"---",
|
||
|
".--.",
|
||
|
"--.-",
|
||
|
".-.",
|
||
|
"...",
|
||
|
"-",
|
||
|
"..-",
|
||
|
"...-",
|
||
|
".--",
|
||
|
"-..-",
|
||
|
"-.--",
|
||
|
"--.."
|
||
|
)
|
||
|
|
||
|
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)
|
||
|
}
|