Sha256: cd1e1c3e08ed46f35efdddfefdca8a5035809c4fa1b509be8056eb1f3f858077

Contents?: true

Size: 818 Bytes

Versions: 126

Compression:

Stored size: 818 Bytes

Contents

object PigLatin {

    fun translate(phrase: String) = phrase.split(Regex("\\s+")).map({ translateWord(it) }).joinToString(" ")

    private fun translateWord(word: String): String {
        if (startsWithVowelSound(word)) {
            return word + "ay"
        }

        val groups = splitInitialConsonantSound(word)
        if(groups != null) {
            return groups[1] + groups[0] + "ay"
        }

        return word
    }

    private val consonant = Regex("^([^aeiou]?qu|[^aeiouy]+|[^aeiou]+)([a-z]*)", RegexOption.IGNORE_CASE)
    private fun splitInitialConsonantSound(word: String) = consonant.matchEntire(word)?.groupValues?.drop(1)

    private val vowels = Regex("^([aeiou]|y[^aeiou]|xr)[a-z]*", RegexOption.IGNORE_CASE)
    private fun startsWithVowelSound(word: String) = vowels.matches(word)

}

Version data entries

126 entries across 126 versions & 1 rubygems

Version Path
trackler-2.2.1.58 tracks/kotlin/exercises/pig-latin/.meta/src/reference/kotlin/PigLatin.kt
trackler-2.2.1.57 tracks/kotlin/exercises/pig-latin/.meta/src/reference/kotlin/PigLatin.kt
trackler-2.2.1.56 tracks/kotlin/exercises/pig-latin/.meta/src/reference/kotlin/PigLatin.kt
trackler-2.2.1.55 tracks/kotlin/exercises/pig-latin/.meta/src/reference/kotlin/PigLatin.kt
trackler-2.2.1.54 tracks/kotlin/exercises/pig-latin/.meta/src/reference/kotlin/PigLatin.kt
trackler-2.2.1.53 tracks/kotlin/exercises/pig-latin/.meta/src/reference/kotlin/PigLatin.kt