diff --git a/kotlin/flatten-array/.idea/workspace.xml b/kotlin/flatten-array/.idea/workspace.xml index 3c6dedd..0ded855 100644 --- a/kotlin/flatten-array/.idea/workspace.xml +++ b/kotlin/flatten-array/.idea/workspace.xml @@ -32,8 +32,8 @@ - - + + @@ -474,7 +474,7 @@ - + @@ -640,7 +640,7 @@ @@ -677,7 +677,7 @@ - @@ -692,7 +692,7 @@ - + @@ -757,8 +757,8 @@ - - + + diff --git a/kotlin/pig-latin/.gradle/4.0.1/fileChanges/last-build.bin b/kotlin/pig-latin/.gradle/4.0.1/fileChanges/last-build.bin new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/kotlin/pig-latin/.gradle/4.0.1/fileChanges/last-build.bin differ diff --git a/kotlin/pig-latin/.gradle/4.0.1/fileHashes/fileHashes.bin b/kotlin/pig-latin/.gradle/4.0.1/fileHashes/fileHashes.bin new file mode 100644 index 0000000..bb53d26 Binary files /dev/null and b/kotlin/pig-latin/.gradle/4.0.1/fileHashes/fileHashes.bin differ diff --git a/kotlin/pig-latin/.gradle/4.0.1/fileHashes/fileHashes.lock b/kotlin/pig-latin/.gradle/4.0.1/fileHashes/fileHashes.lock new file mode 100644 index 0000000..1bccc5f Binary files /dev/null and b/kotlin/pig-latin/.gradle/4.0.1/fileHashes/fileHashes.lock differ diff --git a/kotlin/pig-latin/.gradle/buildOutputCleanup/built.bin b/kotlin/pig-latin/.gradle/buildOutputCleanup/built.bin new file mode 100644 index 0000000..e69de29 diff --git a/kotlin/pig-latin/.gradle/buildOutputCleanup/cache.properties b/kotlin/pig-latin/.gradle/buildOutputCleanup/cache.properties new file mode 100644 index 0000000..c17db8a --- /dev/null +++ b/kotlin/pig-latin/.gradle/buildOutputCleanup/cache.properties @@ -0,0 +1,2 @@ +#Tue Jul 25 17:26:14 EDT 2017 +gradle.version=4.0.1 diff --git a/kotlin/pig-latin/.gradle/buildOutputCleanup/cache.properties.lock b/kotlin/pig-latin/.gradle/buildOutputCleanup/cache.properties.lock new file mode 100644 index 0000000..40fdece --- /dev/null +++ b/kotlin/pig-latin/.gradle/buildOutputCleanup/cache.properties.lock @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/kotlin/pig-latin/README.md b/kotlin/pig-latin/README.md new file mode 100644 index 0000000..65aebd5 --- /dev/null +++ b/kotlin/pig-latin/README.md @@ -0,0 +1,27 @@ +# Pig Latin + +Implement a program that translates from English to Pig Latin. + +Pig Latin is a made-up children's language that's intended to be +confusing. It obeys a few simple rules (below), but when it's spoken +quickly it's really difficult for non-children (and non-native speakers) +to understand. + +- **Rule 1**: If a word begins with a vowel sound, add an "ay" sound to + the end of the word. +- **Rule 2**: If a word begins with a consonant sound, move it to the + end of the word, and then add an "ay" sound to the end of the word. + +There are a few more rules for edge cases, and there are regional +variants too. + +See for more details. + + + +## Source + +The Pig Latin exercise at Test First Teaching by Ultrasaurus [https://github.com/ultrasaurus/test-first-teaching/blob/master/learn_ruby/pig_latin/](https://github.com/ultrasaurus/test-first-teaching/blob/master/learn_ruby/pig_latin/) + +## Submitting Incomplete Solutions +It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/kotlin/pig-latin/build.gradle b/kotlin/pig-latin/build.gradle new file mode 100644 index 0000000..16c36c0 --- /dev/null +++ b/kotlin/pig-latin/build.gradle @@ -0,0 +1,28 @@ +buildscript { + ext.kotlin_version = '1.1.1' + repositories { + mavenCentral() + } + dependencies { + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + } +} + +apply plugin: 'kotlin' + +repositories { + mavenCentral() +} + +dependencies { + compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" + + testCompile 'junit:junit:4.12' + testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version" +} +test { + testLogging { + exceptionFormat = 'full' + events = ["passed", "failed", "skipped"] + } +} diff --git a/kotlin/pig-latin/build/kotlin-build/caches/version.txt b/kotlin/pig-latin/build/kotlin-build/caches/version.txt new file mode 100644 index 0000000..01aabac --- /dev/null +++ b/kotlin/pig-latin/build/kotlin-build/caches/version.txt @@ -0,0 +1 @@ +11001 \ No newline at end of file diff --git a/kotlin/pig-latin/out/production/classes/META-INF/pig-latin_main.kotlin_module b/kotlin/pig-latin/out/production/classes/META-INF/pig-latin_main.kotlin_module new file mode 100644 index 0000000..d5cb8e1 Binary files /dev/null and b/kotlin/pig-latin/out/production/classes/META-INF/pig-latin_main.kotlin_module differ diff --git a/kotlin/pig-latin/out/production/classes/PigLatin$Companion.class b/kotlin/pig-latin/out/production/classes/PigLatin$Companion.class new file mode 100644 index 0000000..950f75a Binary files /dev/null and b/kotlin/pig-latin/out/production/classes/PigLatin$Companion.class differ diff --git a/kotlin/pig-latin/out/production/classes/PigLatin.class b/kotlin/pig-latin/out/production/classes/PigLatin.class new file mode 100644 index 0000000..e366bad Binary files /dev/null and b/kotlin/pig-latin/out/production/classes/PigLatin.class differ diff --git a/kotlin/pig-latin/out/production/classes/PigLatinKt.class b/kotlin/pig-latin/out/production/classes/PigLatinKt.class new file mode 100644 index 0000000..855585a Binary files /dev/null and b/kotlin/pig-latin/out/production/classes/PigLatinKt.class differ diff --git a/kotlin/pig-latin/out/test/classes/PigLatinTest$Companion.class b/kotlin/pig-latin/out/test/classes/PigLatinTest$Companion.class new file mode 100644 index 0000000..b819300 Binary files /dev/null and b/kotlin/pig-latin/out/test/classes/PigLatinTest$Companion.class differ diff --git a/kotlin/pig-latin/out/test/classes/PigLatinTest.class b/kotlin/pig-latin/out/test/classes/PigLatinTest.class new file mode 100644 index 0000000..aea3fe4 Binary files /dev/null and b/kotlin/pig-latin/out/test/classes/PigLatinTest.class differ diff --git a/kotlin/pig-latin/pig-latin.iml b/kotlin/pig-latin/pig-latin.iml new file mode 100644 index 0000000..28cdd60 --- /dev/null +++ b/kotlin/pig-latin/pig-latin.iml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/pig-latin/src/main/kotlin/.keep b/kotlin/pig-latin/src/main/kotlin/.keep new file mode 100644 index 0000000..e69de29 diff --git a/kotlin/pig-latin/src/main/kotlin/PigLatin.kt b/kotlin/pig-latin/src/main/kotlin/PigLatin.kt new file mode 100644 index 0000000..d36dfd6 --- /dev/null +++ b/kotlin/pig-latin/src/main/kotlin/PigLatin.kt @@ -0,0 +1,31 @@ +class PigLatin { + companion object { + fun translate(inpString: String): String { + val stringList: List = inpString.split(' ') + val returnStringBuilder = StringBuilder() + for (i in stringList){ + returnStringBuilder.append(i.convertToPigLatin()).append(" ") + } + return String(returnStringBuilder).trim() + } + + } +} + +fun Char.isVowel(): Boolean{ + val lowercase = this.toLowerCase() + return ((lowercase == 'a') or (lowercase == 'e') or (lowercase == 'i') or (lowercase == 'o') or (lowercase == 'u')) +} + +fun String.convertToPigLatin(): String{ + val returnStringBuilder = StringBuilder() + if (this.first().isVowel()){ + returnStringBuilder.append(this + "ay") + } + else { + // TODO: Start accounting for edge cases + val (first, temp) = this.partition { it === this.first() } + returnStringBuilder.append(temp + first + "ay") + } + return String(returnStringBuilder) +} \ No newline at end of file diff --git a/kotlin/pig-latin/src/test/kotlin/PigLatinTest.kt b/kotlin/pig-latin/src/test/kotlin/PigLatinTest.kt new file mode 100644 index 0000000..5616680 --- /dev/null +++ b/kotlin/pig-latin/src/test/kotlin/PigLatinTest.kt @@ -0,0 +1,61 @@ +import org.junit.Test +import org.junit.Ignore +import org.junit.runner.RunWith +import org.junit.runners.Parameterized +import kotlin.test.assertEquals + +@RunWith(Parameterized::class) +class PigLatinTest(val input: String, val expectedOutput: String) { + + companion object { + @JvmStatic + @Parameterized.Parameters(name = "{index}: translate({0})={1}") + fun data() = arrayOf( + // Ay is added to words that start with vowels + arrayOf("apple", "appleay"), + arrayOf("ear", "earay"), + arrayOf("igloo", "iglooay"), + arrayOf("object", "objectay"), + arrayOf("under", "underay"), + + // First letter and ay are moved to the end of words that start with consonants + arrayOf("pig", "igpay"), + arrayOf("koala", "oalakay"), + arrayOf("yellow", "ellowyay"), + arrayOf("xenon", "enonxay"), + + // Ch is treated like a single consonant + arrayOf("chair", "airchay"), + + // Qu is treated like a single consonant + arrayOf("queen", "eenquay"), + + // Qu and a single preceding consonant are treated like a single consonant + arrayOf("square", "aresquay"), + + // Th is treated like a single consonant + arrayOf("therapy", "erapythay"), + + // Thr is treated like a single consonant + arrayOf("thrush", "ushthray"), + + // Sch is treated like a single consonant + arrayOf("school", "oolschay"), + + // Yt is treated like a single vowel + arrayOf("yttria", "yttriaay"), + + // Xr is treated like a single vowel + arrayOf("xray", "xrayay"), + + // Phrases are translated + arrayOf("quick fast run", "ickquay astfay unray") + ) + } + + + @Test + fun test() { + assertEquals(expectedOutput, PigLatin.translate(input)) + } +}