From 0d8b4b8458f07bd7197b38d1a1d1e8174ce593d0 Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Mon, 5 Jun 2017 18:05:53 -0400 Subject: [PATCH] Kotlin - Acronym Complete --- .../.gradle/3.5/file-changes/last-build.bin | Bin 0 -> 1 bytes .../.gradle/3.5/taskHistory/taskHistory.lock | Bin 0 -> 17 bytes .../.gradle/buildOutputCleanup/built.bin | 0 .../buildOutputCleanup/cache.properties | 2 + .../buildOutputCleanup/cache.properties.lock | 1 + kotlin/acronym/.idea/compiler.xml | 9 + kotlin/acronym/.idea/gradle.xml | 19 + .../libraries/Gradle__junit_junit_4_12.xml | 11 + ...Gradle__org_hamcrest_hamcrest_core_1_3.xml | 11 + ...Gradle__org_jetbrains_annotations_13_0.xml | 11 + ...g_jetbrains_kotlin_kotlin_stdlib_1_1_1.xml | 11 + ...org_jetbrains_kotlin_kotlin_test_1_1_1.xml | 11 + ...tbrains_kotlin_kotlin_test_junit_1_1_1.xml | 11 + kotlin/acronym/.idea/misc.xml | 6 + kotlin/acronym/.idea/modules.xml | 10 + kotlin/acronym/.idea/modules/acronym_main.iml | 40 + kotlin/acronym/.idea/modules/acronym_test.iml | 46 + kotlin/acronym/.idea/workspace.xml | 983 ++++++++++++++++++ kotlin/acronym/README.md | 16 + kotlin/acronym/acronym.iml | 12 + kotlin/acronym/build.gradle | 28 + .../acronym/build/classes/main/Acronym.class | Bin 0 -> 4549 bytes .../build/classes/test/AcronymTest.class | Bin 0 -> 2030 bytes .../build/kotlin-build/caches/version.txt | 1 + kotlin/acronym/src/main/kotlin/.keep | 0 kotlin/acronym/src/main/kotlin/Acronym.kt | 17 + kotlin/acronym/src/test/kotlin/AcronymTest.kt | 55 + .../difference-of-squares/.idea/workspace.xml | 8 +- 28 files changed, 1315 insertions(+), 4 deletions(-) create mode 100644 kotlin/acronym/.gradle/3.5/file-changes/last-build.bin create mode 100644 kotlin/acronym/.gradle/3.5/taskHistory/taskHistory.lock create mode 100644 kotlin/acronym/.gradle/buildOutputCleanup/built.bin create mode 100644 kotlin/acronym/.gradle/buildOutputCleanup/cache.properties create mode 100644 kotlin/acronym/.gradle/buildOutputCleanup/cache.properties.lock create mode 100644 kotlin/acronym/.idea/compiler.xml create mode 100644 kotlin/acronym/.idea/gradle.xml create mode 100644 kotlin/acronym/.idea/libraries/Gradle__junit_junit_4_12.xml create mode 100644 kotlin/acronym/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml create mode 100644 kotlin/acronym/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml create mode 100644 kotlin/acronym/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_1.xml create mode 100644 kotlin/acronym/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_1_1_1.xml create mode 100644 kotlin/acronym/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_junit_1_1_1.xml create mode 100644 kotlin/acronym/.idea/misc.xml create mode 100644 kotlin/acronym/.idea/modules.xml create mode 100644 kotlin/acronym/.idea/modules/acronym_main.iml create mode 100644 kotlin/acronym/.idea/modules/acronym_test.iml create mode 100644 kotlin/acronym/.idea/workspace.xml create mode 100644 kotlin/acronym/README.md create mode 100644 kotlin/acronym/acronym.iml create mode 100644 kotlin/acronym/build.gradle create mode 100644 kotlin/acronym/build/classes/main/Acronym.class create mode 100644 kotlin/acronym/build/classes/test/AcronymTest.class create mode 100644 kotlin/acronym/build/kotlin-build/caches/version.txt create mode 100644 kotlin/acronym/src/main/kotlin/.keep create mode 100644 kotlin/acronym/src/main/kotlin/Acronym.kt create mode 100644 kotlin/acronym/src/test/kotlin/AcronymTest.kt diff --git a/kotlin/acronym/.gradle/3.5/file-changes/last-build.bin b/kotlin/acronym/.gradle/3.5/file-changes/last-build.bin new file mode 100644 index 0000000000000000000000000000000000000000..f76dd238ade08917e6712764a16a22005a50573d GIT binary patch literal 1 IcmZPo000310RR91 literal 0 HcmV?d00001 diff --git a/kotlin/acronym/.gradle/3.5/taskHistory/taskHistory.lock b/kotlin/acronym/.gradle/3.5/taskHistory/taskHistory.lock new file mode 100644 index 0000000000000000000000000000000000000000..b8a641a23932bf715ed1c463a01582d92d54d113 GIT binary patch literal 17 TcmZRc7!thlmcIlu0~7!NDhC58 literal 0 HcmV?d00001 diff --git a/kotlin/acronym/.gradle/buildOutputCleanup/built.bin b/kotlin/acronym/.gradle/buildOutputCleanup/built.bin new file mode 100644 index 0000000..e69de29 diff --git a/kotlin/acronym/.gradle/buildOutputCleanup/cache.properties b/kotlin/acronym/.gradle/buildOutputCleanup/cache.properties new file mode 100644 index 0000000..d7439b3 --- /dev/null +++ b/kotlin/acronym/.gradle/buildOutputCleanup/cache.properties @@ -0,0 +1,2 @@ +#Mon Jun 05 17:38:26 EDT 2017 +gradle.version=3.5 diff --git a/kotlin/acronym/.gradle/buildOutputCleanup/cache.properties.lock b/kotlin/acronym/.gradle/buildOutputCleanup/cache.properties.lock new file mode 100644 index 0000000..40fdece --- /dev/null +++ b/kotlin/acronym/.gradle/buildOutputCleanup/cache.properties.lock @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/kotlin/acronym/.idea/compiler.xml b/kotlin/acronym/.idea/compiler.xml new file mode 100644 index 0000000..809782e --- /dev/null +++ b/kotlin/acronym/.idea/compiler.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/kotlin/acronym/.idea/gradle.xml b/kotlin/acronym/.idea/gradle.xml new file mode 100644 index 0000000..20d2df6 --- /dev/null +++ b/kotlin/acronym/.idea/gradle.xml @@ -0,0 +1,19 @@ + + + + + + \ No newline at end of file diff --git a/kotlin/acronym/.idea/libraries/Gradle__junit_junit_4_12.xml b/kotlin/acronym/.idea/libraries/Gradle__junit_junit_4_12.xml new file mode 100644 index 0000000..04c10dd --- /dev/null +++ b/kotlin/acronym/.idea/libraries/Gradle__junit_junit_4_12.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/acronym/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml b/kotlin/acronym/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml new file mode 100644 index 0000000..8262f72 --- /dev/null +++ b/kotlin/acronym/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/acronym/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml b/kotlin/acronym/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml new file mode 100644 index 0000000..4f32fde --- /dev/null +++ b/kotlin/acronym/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/acronym/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_1.xml b/kotlin/acronym/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_1.xml new file mode 100644 index 0000000..7b6f562 --- /dev/null +++ b/kotlin/acronym/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_1.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/acronym/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_1_1_1.xml b/kotlin/acronym/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_1_1_1.xml new file mode 100644 index 0000000..1720158 --- /dev/null +++ b/kotlin/acronym/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_1_1_1.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/acronym/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_junit_1_1_1.xml b/kotlin/acronym/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_junit_1_1_1.xml new file mode 100644 index 0000000..21c5d19 --- /dev/null +++ b/kotlin/acronym/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_junit_1_1_1.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/acronym/.idea/misc.xml b/kotlin/acronym/.idea/misc.xml new file mode 100644 index 0000000..84da703 --- /dev/null +++ b/kotlin/acronym/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/kotlin/acronym/.idea/modules.xml b/kotlin/acronym/.idea/modules.xml new file mode 100644 index 0000000..c8750a2 --- /dev/null +++ b/kotlin/acronym/.idea/modules.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/acronym/.idea/modules/acronym_main.iml b/kotlin/acronym/.idea/modules/acronym_main.iml new file mode 100644 index 0000000..fc7544c --- /dev/null +++ b/kotlin/acronym/.idea/modules/acronym_main.iml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/acronym/.idea/modules/acronym_test.iml b/kotlin/acronym/.idea/modules/acronym_test.iml new file mode 100644 index 0000000..f51ca55 --- /dev/null +++ b/kotlin/acronym/.idea/modules/acronym_test.iml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/acronym/.idea/workspace.xml b/kotlin/acronym/.idea/workspace.xml new file mode 100644 index 0000000..690e077 --- /dev/null +++ b/kotlin/acronym/.idea/workspace.xml @@ -0,0 +1,983 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @ignore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1496698703791 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/acronym/README.md b/kotlin/acronym/README.md new file mode 100644 index 0000000..6e1c3e6 --- /dev/null +++ b/kotlin/acronym/README.md @@ -0,0 +1,16 @@ +# Acronym + +Convert a phrase to its acronym. + +Techies love their TLA (Three Letter Acronyms)! + +Help generate some jargon by writing a program that converts a long name +like Portable Network Graphics to its acronym (PNG). + +## Source + +Julien Vanier [https://github.com/monkbroc](https://github.com/monkbroc) + +## 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/acronym/acronym.iml b/kotlin/acronym/acronym.iml new file mode 100644 index 0000000..52e0a91 --- /dev/null +++ b/kotlin/acronym/acronym.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/acronym/build.gradle b/kotlin/acronym/build.gradle new file mode 100644 index 0000000..16c36c0 --- /dev/null +++ b/kotlin/acronym/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/acronym/build/classes/main/Acronym.class b/kotlin/acronym/build/classes/main/Acronym.class new file mode 100644 index 0000000000000000000000000000000000000000..1d434d56a8642c057abf22bbb4f06c859f31d5c2 GIT binary patch literal 4549 zcmb7H?RON_8UNkcm)T4 z#}HWGFXc1ua-j1@mO%S(sXUpUHk|RYZd!I)x2%$*J7$UWNXZ$g6pI4_4W@O% zlM+KrVC_uFDVkP#dTustT8>e+^kO<^Nj0{aw^e8YH|M8}{LEp!tj`);k+ZAP1U3Y1 z^UNQ((X`H^am3N2p%KjjE9>42P3h%P`e&PHrNmq6HZ*(-e6 z0ZdVHH+tl{O-m5xg;>RAfwpSs^EIRGblm|r3%zt(FBArgMS-4b_+10*>w?+$13A!1 zGq>PQ4SnbrXs!pyi{>_ou$tCU^R#iOyvI-Ts$iOH5_6roIIO>rS5!J}w$C%PT!Z4`RhYy{&2f0Sv zhW!GFVOZw6WLif`UKH!lycXPEvpImsC2;+J`9Wwe6%;7tiHhX{&ra{FQkj9^M&GG` za?cA!X#|I4Tn`H;A`L6%`G0viZbh^N}{XeThz-#3?y-TJ}AA z*o{{lpYtsIJVQ9A7c0i030Z7I)n@4WS%cx@IHMthC)ge8&DopXT``LV8Hq1xI9qSJ z?*2iB#VU9W{7E*fqG3%sQ?6C)8DGIy8?hW;<3ygu4l)$20+X&X}vX1zK>_5oj(vrPnbof@JOj+i6b4I-EAkzM#0SU z#P8hX3+(8O;YR{%+~areNv^PM9wtX+WAy9AOx^xZ8@Zn5;HJVzuDt%7mVFPLgcUY7{oI^;H%T-AGS3yd{{ zWe#K8^Sp?-XXP-5qA7`m zGnx{UL^I!^*gH=us}|1mDx1Y_HKx3MA*v*l{mqHcEz0I_Z!{5+@BN8HG&sITdHcnv zDn;|yi|gKvZETh|D|uAVUafk3Y?_fE8Y&f7h%LjVyk0!2mrV)4Bl3^kY}mAnk;?2i z6Yp`FMjbsr!@gM^ufDHhIp(a9v*t|Oj%$CQel=u1W|lScZHj)fq!5sqGXfk>Q8wJi`o21fY zsY!JKnQSZ>tBL9fippxqNK%`})(0*w{y7<0z+DHssUaIqhO-f=BN4zKP(jN<+9O0r zh{R5Mb?+rQ9l}-q{{yW!%;!Fg^8A<75!}zPOmlP;4?sf>op=z(prQx+@ep}ompYD5 zGnA6|8SZGrT8G`xm&&?%370J~gy5towkqAoS=%6o!y zQeGI6%DeJDpnU}x)bSYm@B}GErVo>DawQd`Hi2v8?njH8=(T+J5CA#cLjOYaY&FUp zSFi@BT}e{IT54WL+uCSp81Iq(CvQdnBK-lqe3SBaAiRivs45hd$WoDXf48Z;fnw(( zHX`OtskqCZXv2D1w1Jj3;aNT}kvGo*dXw|-a{Mm)&3k+#p!OsF9|@x6 zD&{^yhhTl~644K#>=I3jlv70-!RD@cO7M#Q5!$)#L&O)+jF5*nvgr%I);ti=J_#)# z-gOx-buB=76?l$tIseRhUwoF_7eDPP4-P<-+|Jt&7_Glk>MXP;H@w;to zEV$!K;&9*C#qm&3#g{ zt8GhrMyle=)05du%2h)vIMuJocTEZ2X4Hq7i{BFFzdMdl4!?JQm+-PbdW8(UD*s+P c4q@XDc>OqHHg?+>wz0-W#3jhtYvb~N0gD@H*8l(j literal 0 HcmV?d00001 diff --git a/kotlin/acronym/build/classes/test/AcronymTest.class b/kotlin/acronym/build/classes/test/AcronymTest.class new file mode 100644 index 0000000000000000000000000000000000000000..8ff3e60881a980dc4e4cb2d3e8111f79c2942508 GIT binary patch literal 2030 zcmb`HOII5=6vzJ>!+0kNfpZdH+yU$(vvpdmRRi9jQH$<4V*j2O)KeAu&6*OKaR9tY;1*U+PS} z(Hg@dt`sW}#ayCQWJdjmo!J>7Q(x!zJL$bq9BF$hGO4~cxQf{50&+WWe zOXC^_`!IkZnot+M2)PyvGqdi;NVjz;{rcM6Wmg(DMpCqTlwtfR(4O=&nnKKEl@g(r zfv;ZD5kF%XD`y}ECc^=sR7OyO5!^^#B+?&pF=(-RGH^YFxJ z2+h5v;8@m#qeMeeZfa3g$BZv1;9Rl1ZQ(1rlc$n2{w$3rFjMFO34Pe@sH#YN)VSv4 zGa7FaRA4M_Od9UDhG1YvG^$b9^|z;^DP!D78AESRQ-&2A^jPNj+tU?enLY1)_lrrc z7uHZ>(pc`vC&}tPv&=Iqd1hH>R$tqC_p3<-X4F;~g@QD17y7FPmvlSV&ei>cBhqSnB#h)aG(F>EtFKG0N>^M7PcAsna7Z-oW@WLM$V@dWGrhcOr23}I@&?FOs zxQ-j-Nl-1{B#X|2G2EiJfJ=|vLZs+@Kg~{Kl*+wGev@V3aqY)f z0-h&ue6mFXFI@nyb^(9s+FxG@c!j`^2=JJ|tDk^b{9iyqi&dSWJ{D*1{GWLGQN`)D z^PFPi1vHH`U83GVp|#}?;kJ7hnMo|6N)xcPn$Oko`xd+1ki6gCx1 Tg_)MItZ-XlL19&)S0Vo&IC6qf literal 0 HcmV?d00001 diff --git a/kotlin/acronym/build/kotlin-build/caches/version.txt b/kotlin/acronym/build/kotlin-build/caches/version.txt new file mode 100644 index 0000000..01aabac --- /dev/null +++ b/kotlin/acronym/build/kotlin-build/caches/version.txt @@ -0,0 +1 @@ +11001 \ No newline at end of file diff --git a/kotlin/acronym/src/main/kotlin/.keep b/kotlin/acronym/src/main/kotlin/.keep new file mode 100644 index 0000000..e69de29 diff --git a/kotlin/acronym/src/main/kotlin/Acronym.kt b/kotlin/acronym/src/main/kotlin/Acronym.kt new file mode 100644 index 0000000..c6a1570 --- /dev/null +++ b/kotlin/acronym/src/main/kotlin/Acronym.kt @@ -0,0 +1,17 @@ +object Acronym { + fun generate(inpString: String): String{ + val tokenized_sentence = inpString.split(delimiters = ' ').flatMap { it.split('-') } + val letters = tokenized_sentence.map { grabAcronym(it) } + return letters.joinToString(separator = "") + } + + private fun grabAcronym(inpString: String): String{ + if (inpString.first().isUpperCase()){ + if (inpString.all { it.isUpperCase() || !it.isLetter() }){ + return inpString.first().toString() + } + else return inpString.filter { it.isUpperCase() } + } + else return inpString.first().toUpperCase().toString() + } +} \ No newline at end of file diff --git a/kotlin/acronym/src/test/kotlin/AcronymTest.kt b/kotlin/acronym/src/test/kotlin/AcronymTest.kt new file mode 100644 index 0000000..1f1578c --- /dev/null +++ b/kotlin/acronym/src/test/kotlin/AcronymTest.kt @@ -0,0 +1,55 @@ +import org.junit.Test +import org.junit.Ignore +import kotlin.test.assertEquals + +class AcronymTest { + + + @Test + fun fromTitleCasedPhrases() { + val phrase = "Portable Network Graphics" + val expected = "PNG" + assertEquals(expected, Acronym.generate(phrase)) + } + + + @Test + fun fromOtherTitleCasedPhrases() { + val phrase = "Ruby on Rails" + val expected = "ROR" + assertEquals(expected, Acronym.generate(phrase)) + } + + + @Test + fun fromInconsistentlyCasedPhrases() { + val phrase = "HyperText Markup Language" + val expected = "HTML" + assertEquals(expected, Acronym.generate(phrase)) + } + + + @Test + fun fromPhrasesWithPunctuation() { + val phrase = "First In, First Out" + val expected = "FIFO" + assertEquals(expected, Acronym.generate(phrase)) + } + + + @Test + fun fromOtherPhrasesWithPunctuation() { + val phrase = "PHP: Hypertext Preprocessor" + val expected = "PHP" + assertEquals(expected, Acronym.generate(phrase)) + } + + + @Test + fun fromPhrasesWithPunctuationAndSentenceCasing() { + val phrase = "Complementary metal-oxide semiconductor" + val expected = "CMOS" + assertEquals(expected, Acronym.generate(phrase)) + } + +} diff --git a/kotlin/difference-of-squares/.idea/workspace.xml b/kotlin/difference-of-squares/.idea/workspace.xml index 7aadafa..ddce48e 100644 --- a/kotlin/difference-of-squares/.idea/workspace.xml +++ b/kotlin/difference-of-squares/.idea/workspace.xml @@ -485,7 +485,7 @@ - + @@ -815,7 +815,7 @@ - @@ -828,7 +828,7 @@ - +