From 571d943aa68ea9ad58120583599dae034c2f90b0 Mon Sep 17 00:00:00 2001 From: "anthony.cicchetti" Date: Mon, 5 Jun 2017 10:36:22 -0400 Subject: [PATCH] Kotlin - Phone Number Complete --- kotlin/leap/.idea/workspace.xml | 15 +- .../.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/phone-number/.idea/compiler.xml | 9 + kotlin/phone-number/.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/phone-number/.idea/misc.xml | 22 + kotlin/phone-number/.idea/modules.xml | 10 + .../.idea/modules/phone-number_main.iml | 40 + .../.idea/modules/phone-number_test.iml | 46 + kotlin/phone-number/.idea/workspace.xml | 1027 +++++++++++++++++ kotlin/phone-number/README.md | 34 + kotlin/phone-number/build.gradle | 28 + .../classes/main/PhoneNumber$areaCode$2.class | Bin 0 -> 1227 bytes .../classes/main/PhoneNumber$number$2.class | Bin 0 -> 2803 bytes .../build/classes/main/PhoneNumber.class | Bin 0 -> 4249 bytes .../build/classes/test/PhoneNumberTest.class | Bin 0 -> 2466 bytes .../build/kotlin-build/caches/version.txt | 1 + kotlin/phone-number/phone-number.iml | 12 + kotlin/phone-number/src/main/kotlin/.keep | 0 .../src/main/kotlin/PhoneNumber.kt | 20 + .../src/test/kotlin/PhoneNumberTest.kt | 78 ++ .../.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/robot-name/.idea/compiler.xml | 9 + kotlin/robot-name/.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/robot-name/.idea/misc.xml | 22 + kotlin/robot-name/.idea/modules.xml | 10 + .../.idea/modules/robot-name_main.iml | 40 + .../.idea/modules/robot-name_test.iml | 46 + kotlin/robot-name/.idea/workspace.xml | 1016 ++++++++++++++++ kotlin/robot-name/README.md | 24 + kotlin/robot-name/build.gradle | 28 + .../robot-name/build/classes/main/Robot.class | Bin 0 -> 2158 bytes .../classes/test/RobotTest$Companion.class | Bin 0 -> 1604 bytes .../build/classes/test/RobotTest.class | Bin 0 -> 2340 bytes .../build/kotlin-build/caches/version.txt | 1 + kotlin/robot-name/robot-name.iml | 12 + kotlin/robot-name/src/main/kotlin/.keep | 0 kotlin/robot-name/src/main/kotlin/Robot.kt | 28 + .../robot-name/src/test/kotlin/RobotTest.kt | 36 + 58 files changed, 2784 insertions(+), 6 deletions(-) create mode 100644 kotlin/phone-number/.gradle/3.5/file-changes/last-build.bin create mode 100644 kotlin/phone-number/.gradle/3.5/taskHistory/taskHistory.lock create mode 100644 kotlin/phone-number/.gradle/buildOutputCleanup/built.bin create mode 100644 kotlin/phone-number/.gradle/buildOutputCleanup/cache.properties create mode 100644 kotlin/phone-number/.gradle/buildOutputCleanup/cache.properties.lock create mode 100644 kotlin/phone-number/.idea/compiler.xml create mode 100644 kotlin/phone-number/.idea/gradle.xml create mode 100644 kotlin/phone-number/.idea/libraries/Gradle__junit_junit_4_12.xml create mode 100644 kotlin/phone-number/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml create mode 100644 kotlin/phone-number/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml create mode 100644 kotlin/phone-number/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_1.xml create mode 100644 kotlin/phone-number/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_1_1_1.xml create mode 100644 kotlin/phone-number/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_junit_1_1_1.xml create mode 100644 kotlin/phone-number/.idea/misc.xml create mode 100644 kotlin/phone-number/.idea/modules.xml create mode 100644 kotlin/phone-number/.idea/modules/phone-number_main.iml create mode 100644 kotlin/phone-number/.idea/modules/phone-number_test.iml create mode 100644 kotlin/phone-number/.idea/workspace.xml create mode 100644 kotlin/phone-number/README.md create mode 100644 kotlin/phone-number/build.gradle create mode 100644 kotlin/phone-number/build/classes/main/PhoneNumber$areaCode$2.class create mode 100644 kotlin/phone-number/build/classes/main/PhoneNumber$number$2.class create mode 100644 kotlin/phone-number/build/classes/main/PhoneNumber.class create mode 100644 kotlin/phone-number/build/classes/test/PhoneNumberTest.class create mode 100644 kotlin/phone-number/build/kotlin-build/caches/version.txt create mode 100644 kotlin/phone-number/phone-number.iml create mode 100644 kotlin/phone-number/src/main/kotlin/.keep create mode 100644 kotlin/phone-number/src/main/kotlin/PhoneNumber.kt create mode 100644 kotlin/phone-number/src/test/kotlin/PhoneNumberTest.kt create mode 100644 kotlin/robot-name/.gradle/3.5/file-changes/last-build.bin create mode 100644 kotlin/robot-name/.gradle/3.5/taskHistory/taskHistory.lock create mode 100644 kotlin/robot-name/.gradle/buildOutputCleanup/built.bin create mode 100644 kotlin/robot-name/.gradle/buildOutputCleanup/cache.properties create mode 100644 kotlin/robot-name/.gradle/buildOutputCleanup/cache.properties.lock create mode 100644 kotlin/robot-name/.idea/compiler.xml create mode 100644 kotlin/robot-name/.idea/gradle.xml create mode 100644 kotlin/robot-name/.idea/libraries/Gradle__junit_junit_4_12.xml create mode 100644 kotlin/robot-name/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml create mode 100644 kotlin/robot-name/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml create mode 100644 kotlin/robot-name/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_1.xml create mode 100644 kotlin/robot-name/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_1_1_1.xml create mode 100644 kotlin/robot-name/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_junit_1_1_1.xml create mode 100644 kotlin/robot-name/.idea/misc.xml create mode 100644 kotlin/robot-name/.idea/modules.xml create mode 100644 kotlin/robot-name/.idea/modules/robot-name_main.iml create mode 100644 kotlin/robot-name/.idea/modules/robot-name_test.iml create mode 100644 kotlin/robot-name/.idea/workspace.xml create mode 100644 kotlin/robot-name/README.md create mode 100644 kotlin/robot-name/build.gradle create mode 100644 kotlin/robot-name/build/classes/main/Robot.class create mode 100644 kotlin/robot-name/build/classes/test/RobotTest$Companion.class create mode 100644 kotlin/robot-name/build/classes/test/RobotTest.class create mode 100644 kotlin/robot-name/build/kotlin-build/caches/version.txt create mode 100644 kotlin/robot-name/robot-name.iml create mode 100644 kotlin/robot-name/src/main/kotlin/.keep create mode 100644 kotlin/robot-name/src/main/kotlin/Robot.kt create mode 100644 kotlin/robot-name/src/test/kotlin/RobotTest.kt diff --git a/kotlin/leap/.idea/workspace.xml b/kotlin/leap/.idea/workspace.xml index 9dfe018..58f6cf7 100644 --- a/kotlin/leap/.idea/workspace.xml +++ b/kotlin/leap/.idea/workspace.xml @@ -35,8 +35,8 @@ - - + + @@ -484,7 +484,7 @@ - + + + + @@ -945,7 +948,7 @@ - + @@ -993,8 +996,8 @@ - - + + diff --git a/kotlin/phone-number/.gradle/3.5/file-changes/last-build.bin b/kotlin/phone-number/.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/phone-number/.gradle/3.5/taskHistory/taskHistory.lock b/kotlin/phone-number/.gradle/3.5/taskHistory/taskHistory.lock new file mode 100644 index 0000000000000000000000000000000000000000..31666e255c14c77c2493593d4aa099ac4fc86c89 GIT binary patch literal 17 TcmZQpUboI%qyKFt0~7!NE$sux literal 0 HcmV?d00001 diff --git a/kotlin/phone-number/.gradle/buildOutputCleanup/built.bin b/kotlin/phone-number/.gradle/buildOutputCleanup/built.bin new file mode 100644 index 0000000..e69de29 diff --git a/kotlin/phone-number/.gradle/buildOutputCleanup/cache.properties b/kotlin/phone-number/.gradle/buildOutputCleanup/cache.properties new file mode 100644 index 0000000..effb894 --- /dev/null +++ b/kotlin/phone-number/.gradle/buildOutputCleanup/cache.properties @@ -0,0 +1,2 @@ +#Mon Jun 05 10:10:12 EDT 2017 +gradle.version=3.5 diff --git a/kotlin/phone-number/.gradle/buildOutputCleanup/cache.properties.lock b/kotlin/phone-number/.gradle/buildOutputCleanup/cache.properties.lock new file mode 100644 index 0000000..40fdece --- /dev/null +++ b/kotlin/phone-number/.gradle/buildOutputCleanup/cache.properties.lock @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/kotlin/phone-number/.idea/compiler.xml b/kotlin/phone-number/.idea/compiler.xml new file mode 100644 index 0000000..06d3380 --- /dev/null +++ b/kotlin/phone-number/.idea/compiler.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/kotlin/phone-number/.idea/gradle.xml b/kotlin/phone-number/.idea/gradle.xml new file mode 100644 index 0000000..346dc7e --- /dev/null +++ b/kotlin/phone-number/.idea/gradle.xml @@ -0,0 +1,19 @@ + + + + + + \ No newline at end of file diff --git a/kotlin/phone-number/.idea/libraries/Gradle__junit_junit_4_12.xml b/kotlin/phone-number/.idea/libraries/Gradle__junit_junit_4_12.xml new file mode 100644 index 0000000..04c10dd --- /dev/null +++ b/kotlin/phone-number/.idea/libraries/Gradle__junit_junit_4_12.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/phone-number/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml b/kotlin/phone-number/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml new file mode 100644 index 0000000..8262f72 --- /dev/null +++ b/kotlin/phone-number/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/phone-number/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml b/kotlin/phone-number/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml new file mode 100644 index 0000000..4f32fde --- /dev/null +++ b/kotlin/phone-number/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/phone-number/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_1.xml b/kotlin/phone-number/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_1.xml new file mode 100644 index 0000000..7b6f562 --- /dev/null +++ b/kotlin/phone-number/.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/phone-number/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_1_1_1.xml b/kotlin/phone-number/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_1_1_1.xml new file mode 100644 index 0000000..1720158 --- /dev/null +++ b/kotlin/phone-number/.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/phone-number/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_junit_1_1_1.xml b/kotlin/phone-number/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_junit_1_1_1.xml new file mode 100644 index 0000000..21c5d19 --- /dev/null +++ b/kotlin/phone-number/.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/phone-number/.idea/misc.xml b/kotlin/phone-number/.idea/misc.xml new file mode 100644 index 0000000..3e1805e --- /dev/null +++ b/kotlin/phone-number/.idea/misc.xml @@ -0,0 +1,22 @@ + + + + + + + + + + 1.8 + + + + + + + + \ No newline at end of file diff --git a/kotlin/phone-number/.idea/modules.xml b/kotlin/phone-number/.idea/modules.xml new file mode 100644 index 0000000..c56dc4b --- /dev/null +++ b/kotlin/phone-number/.idea/modules.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/phone-number/.idea/modules/phone-number_main.iml b/kotlin/phone-number/.idea/modules/phone-number_main.iml new file mode 100644 index 0000000..b5e7a8d --- /dev/null +++ b/kotlin/phone-number/.idea/modules/phone-number_main.iml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/phone-number/.idea/modules/phone-number_test.iml b/kotlin/phone-number/.idea/modules/phone-number_test.iml new file mode 100644 index 0000000..d8b8c11 --- /dev/null +++ b/kotlin/phone-number/.idea/modules/phone-number_test.iml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/phone-number/.idea/workspace.xml b/kotlin/phone-number/.idea/workspace.xml new file mode 100644 index 0000000..afa3928 --- /dev/null +++ b/kotlin/phone-number/.idea/workspace.xml @@ -0,0 +1,1027 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @ignore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1496671809584 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/phone-number/README.md b/kotlin/phone-number/README.md new file mode 100644 index 0000000..130ec5c --- /dev/null +++ b/kotlin/phone-number/README.md @@ -0,0 +1,34 @@ +# Phone Number + +Clean up user-entered phone numbers so that they can be sent SMS messages. + +The **North American Numbering Plan (NANP)** is a telephone numbering system used by many countries in North America like the United States, Canada or Bermuda. All NANP-countries share the same international country code `1`. + +NANP numbers are ten-digit numbers consisting of a three-digit Numbering Plan Area code, commonly known as *area code*, followed by a seven-digit local number. The first three digits of the local number represent the *exchange code*, followed by the unique four-digit number which is the *subscriber number*. + + +The format is usually represented as +``` +(NXX)-NXX-XXXX +``` +where N is any digit from 2 through 9 and X is any digit from 0 through 9. + +Your task is to clean up differently formated telephone numbers by removing punctuation and the country code (1) if present. + +**Example:** ++1 (613)-995-0253 +613-995-0253 +1 613 995 0253 +613.995.0253 +- - - - - - - - - - - - - +6139950253 + +**Note:** As this exercise only deals with telephone numbers used in NANP-countries only 1 is considered a valid country code. + +## Source + +Event Manager by JumpstartLab [http://tutorials.jumpstartlab.com/projects/eventmanager.html](http://tutorials.jumpstartlab.com/projects/eventmanager.html) + +## 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/phone-number/build.gradle b/kotlin/phone-number/build.gradle new file mode 100644 index 0000000..16c36c0 --- /dev/null +++ b/kotlin/phone-number/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/phone-number/build/classes/main/PhoneNumber$areaCode$2.class b/kotlin/phone-number/build/classes/main/PhoneNumber$areaCode$2.class new file mode 100644 index 0000000000000000000000000000000000000000..7cc20b5a8a0f417449d11bfe0be390988f3a473b GIT binary patch literal 1227 zcmZ`(TTc@~6#iyQFDwNLQtse|s%=rW;N2D!iNwZ=1WX^~!A#q=Y`dLJcBhTL@mu@_ znkX1e4Drz)Wjs^1vMMIcoH^&r`OchgzU_~nU%mlY!6Sz8?R`g>TkTfGbW_|l`G!+7 zQ!7z0hV4?*k+vm_MyF+1LYl7Nwo&4(N{#1(xz}w`m6jtsW7FT|3Z(|`aKq-JZtP0e z67~FAo?-g`h*9)0%m?ykphgj4h*+ZIG);!FbSBW{d8J`iCH43->^F}i23?1S0fvQ= zDaSE|X&sZ8VMzLA(tIO* z4!x%`iaF}zwJTniRfe^6fCPWq-sAk$F(2gXH!NZhFw*P(%#^&wC8s*A)d`X0m|ExwwMy3o18b^Kh(fhxhS}qTn0|bq zYl$H;iQ|K5Eyted-`_>Fn5NFG5a|Uj9Pzg0v^}DYAd+VgaKhwmhM~X{Ej1-wR|%Y9 zxMcNY|AJR+ij0<=D!0qrwUqA%XLi~`S}n6EI+kZqeEn1_^bEUJU2xfUsa)T6+HTd{ zv=r9xV^Osok5o?_>^n7vcu@$`-LSdmnMCoFk6Zo+6*Nx%IR zy+_`h;*D%Ldx-dZ+A!RwHPQ_d|4QlvqK-c3LIKI_M~oa|JoFWlFJFa^F#8#oRH=qM zt?_PY5(`L?cM29mfqVr#NERf{%d}U(6I7{@9mpg8Hq}sv(56uDwfl z0Q%@lxPynZ(+NNof<(Sf>niyfs><#mRK#NUcMaEj-Vz016p5APJur{{v~Ez!!%Yvj HJj8wh_5LE= literal 0 HcmV?d00001 diff --git a/kotlin/phone-number/build/classes/main/PhoneNumber$number$2.class b/kotlin/phone-number/build/classes/main/PhoneNumber$number$2.class new file mode 100644 index 0000000000000000000000000000000000000000..5260227c9b736a53efd36b0056086fc5210b1607 GIT binary patch literal 2803 zcmcgu%X3pz82_Cl%?-Dqghwc^LQA70X(3I3f^9)dDH2Hw(pm%*yuCT3w@vRYxi__} z#2IJ!6Bt)Ix?sUZXXK?bPKTunH!fYcc85Dx;P2$sTSUi|GwnU!)AR3t z1dzjuz_tr>jx8svi?gzlu7c-Xa$%<{1GX-ODwrC9dbvLTE z=~<5LX3jLIfsw+zv20|@hF!``c@@hp4WAqq*!9nd8bShlefn3RY6uI2EqmEnkn}v6 z@>w}QJ1PmM*9 zLRxA11h%dnRIV5%3r5310nKu2(NJf`QdgqLU_i$qWQk_fObG0x#+S@B%MAEo9BIb^ z92JOoPW>iP98>A+!Eu4i4XaF3(@t{TEt9GK?xl(>TBhO2)S>3dWGaH8^@Y|d?Yylj z)wN7l!-znaIVa79@fD)DF3WqyC|70PZIp<>fuzslM)~<9jpU{n-II7z#|gY85N{N? zCs({iW4Px$4W}5KV#Q&(tV3;J!G;fn@-6o`3k~Qz|r`E`#d$E@~ZKhtOwer5AqYYPi zh34Rzke*RAJcH)~i_1ZdL!mw#FoD?`3x;n&iGmarS*&|jZ%6di+j=0@!6mkOdskpU zoYkLx6%IrKYEOmBfC`3v~Df$e{(*RAWw&lWkMMYL4V- z)qW~kj%k!d?m zQ>~ctjHR%*)tS?Bwptor@gzIIvFXIPZI&IEqnn|cbBfGh-nM0BtZcZhWFB@l%+37G z7zQ{X+jx7vBe9s8m@161Q4Zk^lrEC%QsL#=mVSunHzWjXe#12()1>A#LAW*WDT0Vn z_ec6WY<`T+hvH^*+ zhN3P~tD_SJrZCMgE9yPU+VP}?tf-k9@`D!g{TA}w7P6x1$cm~X-)SK$s*cR0;S%2G z4ODV(5EHbwiRtV_oL+6G-1;Wxn0yS23pk0stU zH8FZYU*Gilx!R8`Jw4Ukq|WGl-P!J!w)xoB%;UaX_x1WzaXCQrSH3RSuQ#`x^YnB< z&-P~fa|1(J{qR7pH#d|cF_`Vm^&cI|<(jf%YqH~ddVI~h+LX}K|J_ApFxQ(^X4G1@ zl0Bj%$8@zSNzDeT3{{9}S->(WoiSFi1*_v@eov79kW=N_RRr_6Ui*YJi#ZpTi^yO7pQcOz literal 0 HcmV?d00001 diff --git a/kotlin/phone-number/build/classes/main/PhoneNumber.class b/kotlin/phone-number/build/classes/main/PhoneNumber.class new file mode 100644 index 0000000000000000000000000000000000000000..1d61836ef0ce7019c456628a04c6a9c545dd1914 GIT binary patch literal 4249 zcmb7H?Oz;M6@F&f-C2f(EZdMk(j+vjc3DD}-85JsMhSs-6Cf#I8WJN8y8}#EW;Z(n zCDqngW7Yan-)l8BF;!dNYTrUgW9^!ce$+p~|HJs)nc3ahfclf)GIQ@a_nv#sb6)P5 zzy0fjzW_+%uM(P0FBS}KVr6+wE6I=~L@uhUYBH}H3&~S+7qzS;YJ?AA32m|JiMi9ILQyMOx<)N` zpRb%=(&qCtB6-qfUmgsj1>3~_2#@pVC?hH%#PiRn`4t*af4GAMH*ZH<6CT2jI;0#V zWVB20TZ=k1Xdd$bOT)GqHpEqRB{cFV2lp@@b}ZUU1+0Q2Ov26wkv_Jf=X1hMkI*4U zbVIj}N@$38p9!N2F$MeaF$q#Ugh$C&i$%@IN$8DlhHx{gu4vlVjf9ZY6UH7iDTJw4 z!j76I!;5NZO1re88Cgw6k~|l}5+g=4lNrOB6eAfa34wSf<7jtCVYod;hq{e#_S=w;m~I$jQ8RKi}@{)?;2N!_rtlA-1W zW=teg&zdrxq~EiPT6XEQT2hxauE>~fdPsQGdx#s6TX>i8Z~`Y4WH6?{FM=YN*Ng>g z(T(iaH{k*nBqZncJcUgc;&mR4cOU31mb9FnWu@vq zSjo6}cL=(KJvRI!Yg}QPwBIfVRVRe8c&BL}OJVHWQo6cvit0 zzDUn_Rd$OL6@E^^^FlG7fL&r>H^=mt8cW3-C`rqZ#wssjB&M(O$JEu0oVHe(ZHtw( ztfsGOr3$6pSvb=um z8W~lySvoVuifady8KYkwdB888L*4vk0gE}+ytM-3xMrz2)lyl}eaov2yhSDP2y!}S zPeFv1ILop8y++Mzt_Vr1}nxnypZ_~_YtFW$TABR{P8L!n6HE`KN(ktbUsir}BU_kv&SrEG3#+G0zy zy(Jux@4Xq^Ce%txR2iX4j52o}-_sLC(FycA)7fQS(h}O;=-G6O%D65eu~jjv+_RI~ zyjBvoL@Kjf%**&?eXv)HAJ>Ts+AcJ&Gn43}Q>9_H0G4*rZXky9s>y&%cx#_cs|9ye zJ%=8~ukjlNzrq_KT$8YmA}c+`Rt-f6zmqUtO{J=^<61V)awJq6E*KU8(Mp4xqhvG1 zN%21@xQRdV1}Hj>$z?{wNcEJu3t%&5Ti8}vlwunH32zJg-U;C~7OZL`v9)#YOK9;V z`@tn<_U_3Q!_t?vjIpYlI_vmQtsP@|5xtz~^$J-ve?~3oqH0fz2OF6&;^5q9E~RKoE>)M?M%GS zUM?~IE?OJX6FqmZQ$iUXZ*z%+JA8)u26kc>cJu8$tW|VSTZr4|i1YuS;v~^+xZ=KL zTLh?gv47?^J|2y)<3M5^2g~SdxQq0;*}!ca-oW5Gjz&LI;{|PAsKz^1<3${1q_N6f z$8lk&&ts?R+W7(L0#pIB*Jk$l7;%*JMd=Iy>_2*zIrvH_>tz)71O3 zWjy_nO>4S=_MV1yoR6fg*Krd);{(kHXx4;lY8e*>{0;qq-aGg_BQ@6_YzwpnU&mv; zZGk(O^`T#Gllwz$q5j6U#tmq%qPfH0Cf~uL4^NAw*U@-2AiZ(_?;ZX!_S43h=*0~z z543bNceLC>A#oR%W~i)H#_9&XbPLU-JTE9;u2A;9L$exeSc>$C#n`%nuQ0O2=mmV0 zaa1HwS4opGkAwIcX#q^)3A~7}bEg=61K%V-V)PQZO&CHB!mmDi^lj3@0z4ORF&ecY z7tkLiumXOCvi4HS5zdCtMrk{E-cFw0PF;d{j{h%__6nt3BmXVxQ|7L_lwl%ppPPNM z_;mn#?z8uAab_gQVE1u>AB6TF$-sR&ck=?tUgIv{$JKw6fIm~3%q!B)#t^=P7{?;t zMv0#I8wh-e8#9dIn=?`02HuSRHv0S9cxwaimT_Zh#$RK+7rj+uyoXld6GS@jUA*iB zAd-|V^batH3lBze0N=ASwie0trNWO7xzðQY8PK^(pR_d#$;@nS4Vyd$;8dZ8a zQ=Jbi^GwN3cg{NPg~>v!xHoA1=g{nIWywiPNsK9}uGE2a-#|(^)R*o`52QKhPj#ga z93DugmBdI*0lR!EiT|kuW%hTagdo1EV(<|Sjnd>xe1j46y!$Tmog^AXp6QlNX#KbidipeiM$R9Y>Pi@ z9q#ewHWyBe7^A*@{aDYLx>e6@?CtX^yb(r;s>yXrc(IHk+3^ZO%XYJ#+izKhlauS` z8EJ*7>AUx4X7A7CRZZ)_cPa>TizZ{;R6n!Ft(~O1=Y{xXLoP*qQMIm_8F>Fh$;Yb6F(z@$e z{;s8)Vywnr=`GV?R1W9hF)$y3x$HU1vvfH~ranZ&8V%AFP^ecOK>69HLh)x?fF1t& z2$b`hAJySB48bT_4)J(Kbvj&<9m8oX*$zSz;CB-API~lSXEbuGn?`M?!L34J$*3ES zC|b1@qbZz{D4;}zaLvA8G-z1CiVe&B!C%El_0wZC7D~Tln!K)?#b&*A$Sr62b(J4U zrlE)URCx1SjPmV*GooR)%vz?QAM?x}=T^pPH0|##mF_U=c%>UAK*P21^$|*>VjH#j z1Wi&-a-L_@9p(+`q(VoV^SFSff)rJ{i$m&7t}og(4w+*{rCA&UvMZjs6Ex>3>;dZK z)zqKDmGBulcXd0qm+B_;41uZsI6;rSjh;v`y5jJs{PGX@+g+Tv?mOH~W%XBDrukwk zBoldUq8fG3veeJnRaobaUeg^NTquXf5p)73A5jeV+#xYy2N>0$j2}-=(wZ`)XiDGd ziKeL1z)w|&PEV$kJX`2|_fr(Er)pp1ijwbGjlt>+tY~1x0!t07uE5d)EACnEevYCm zD77hu^eA~GyVQi`wyAFqb;Cj(L+6y&Ve$aPc6dcgmF=o-R`jN!@0omCKG5pQM$qXz z&+zk>-E+$*DjJIFz3*N>V39G2X_g3R_Y)oa!q7 zPVtwi?l+YDmHO9j-(fNKmOlLjlM21SGlRfBEFYn(@I+{UuEE0LXqZ03EKvo&lnWEb zd;-xu=p4PY1Ai2eF}#yB+8+G#j{=?sct5}g0X}pAe5^hAjgJC;72wwZo&oge1@M~z zcnML8WW(kBHjvAyiMLc>f5Pd}J%G0c%0}=nCrM6*NY>oNH!z=dA>uB%jIvc4N8ofD zoO}NbXA(I1_uUqxXP!hrx>< z0AC2e7u$kA2KWaL~GZJVT_Q4cgqLZb2DA cUki!~nsJRzL8F4E1>F?%NYIj?F+tD&0hPhbBme*a literal 0 HcmV?d00001 diff --git a/kotlin/phone-number/build/kotlin-build/caches/version.txt b/kotlin/phone-number/build/kotlin-build/caches/version.txt new file mode 100644 index 0000000..01aabac --- /dev/null +++ b/kotlin/phone-number/build/kotlin-build/caches/version.txt @@ -0,0 +1 @@ +11001 \ No newline at end of file diff --git a/kotlin/phone-number/phone-number.iml b/kotlin/phone-number/phone-number.iml new file mode 100644 index 0000000..de39443 --- /dev/null +++ b/kotlin/phone-number/phone-number.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/phone-number/src/main/kotlin/.keep b/kotlin/phone-number/src/main/kotlin/.keep new file mode 100644 index 0000000..e69de29 diff --git a/kotlin/phone-number/src/main/kotlin/PhoneNumber.kt b/kotlin/phone-number/src/main/kotlin/PhoneNumber.kt new file mode 100644 index 0000000..7d2a05a --- /dev/null +++ b/kotlin/phone-number/src/main/kotlin/PhoneNumber.kt @@ -0,0 +1,20 @@ +class PhoneNumber(inpNumber: String) { + init { + if (inpNumber.length < 10) throw IllegalArgumentException() + if ((inpNumber.length == 11) && !(inpNumber[0] == '1')) throw IllegalArgumentException() + } + private val digits: String = inpNumber.filter { it.isDigit() } + val areaCode: String by lazy { + number.substring(0..2) + } + val number: String by lazy { + if (digits.length == 10) { + digits.filter { it.isDigit() }.drop(0) + } + else digits.filter { it.isDigit() }.drop(0).drop(1) + } + + override fun toString(): String { + return "(" + number.subSequence(0..2) + ") " + number.subSequence(3..5)+ "-" + number.subSequence(6..9) + } +} \ No newline at end of file diff --git a/kotlin/phone-number/src/test/kotlin/PhoneNumberTest.kt b/kotlin/phone-number/src/test/kotlin/PhoneNumberTest.kt new file mode 100644 index 0000000..405c053 --- /dev/null +++ b/kotlin/phone-number/src/test/kotlin/PhoneNumberTest.kt @@ -0,0 +1,78 @@ +import org.junit.Test +import org.junit.Ignore +import kotlin.test.assertEquals +import kotlin.test.fail + +class PhoneNumberTest { + + + @Test + fun cleansNumber() { + val expectedNumber = "1234567890" + val actualNumber = PhoneNumber("(123) 456-7890").number + + assertEquals(expectedNumber, actualNumber) + } + + + @Test + fun cleansNumberWithDots() { + val expectedNumber = "1234567890" + val actualNumber = PhoneNumber("123.456.7890").number + + assertEquals(expectedNumber, actualNumber) + } + + + @Test + fun validWhen11DigitsAndFirstIs1() { + val expectedNumber = "1234567890" + val actualNumber = PhoneNumber("11234567890").number + + assertEquals(expectedNumber, actualNumber) + } + + + @Test(expected = IllegalArgumentException::class) + fun invalidWhenOnly11Digits() { + val actualNumber = PhoneNumber("21234567890") + + fail("IllegalArgumentException should have been thrown") + } + + + @Test(expected = IllegalArgumentException::class) + fun invalidWhen9Digits() { + val actualNumber = PhoneNumber("123456789") + + fail("IllegalArgumentException should have been thrown") + } + + + @Test + fun areaCode() { + val expectedAreaCode = "123" + val actualAreaCode = PhoneNumber("1234567890").areaCode + + assertEquals(expectedAreaCode, actualAreaCode) + } + + + @Test + fun toStringPrint() { + val expectedtoStringNumber = "(123) 456-7890" + val actualtoStringNumber = PhoneNumber("1234567890").toString() + + assertEquals(expectedtoStringNumber, actualtoStringNumber) + } + + + @Test + fun toStringPrintWithFullUSPhoneNumber() { + val expectedtoStringNumber = "(123) 456-7890" + val actualtoStringNumber = PhoneNumber("11234567890").toString() + + assertEquals(expectedtoStringNumber, actualtoStringNumber) + } + +} diff --git a/kotlin/robot-name/.gradle/3.5/file-changes/last-build.bin b/kotlin/robot-name/.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/robot-name/.gradle/3.5/taskHistory/taskHistory.lock b/kotlin/robot-name/.gradle/3.5/taskHistory/taskHistory.lock new file mode 100644 index 0000000000000000000000000000000000000000..afd5976e47254834c7bf1fada4db956dd9032bf8 GIT binary patch literal 17 TcmZR6elgedR?=n(1}FdkIo + + + + + + + + \ No newline at end of file diff --git a/kotlin/robot-name/.idea/gradle.xml b/kotlin/robot-name/.idea/gradle.xml new file mode 100644 index 0000000..346dc7e --- /dev/null +++ b/kotlin/robot-name/.idea/gradle.xml @@ -0,0 +1,19 @@ + + + + + + \ No newline at end of file diff --git a/kotlin/robot-name/.idea/libraries/Gradle__junit_junit_4_12.xml b/kotlin/robot-name/.idea/libraries/Gradle__junit_junit_4_12.xml new file mode 100644 index 0000000..04c10dd --- /dev/null +++ b/kotlin/robot-name/.idea/libraries/Gradle__junit_junit_4_12.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/robot-name/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml b/kotlin/robot-name/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml new file mode 100644 index 0000000..8262f72 --- /dev/null +++ b/kotlin/robot-name/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/robot-name/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml b/kotlin/robot-name/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml new file mode 100644 index 0000000..4f32fde --- /dev/null +++ b/kotlin/robot-name/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/robot-name/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_1.xml b/kotlin/robot-name/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_1.xml new file mode 100644 index 0000000..7b6f562 --- /dev/null +++ b/kotlin/robot-name/.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/robot-name/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_1_1_1.xml b/kotlin/robot-name/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_1_1_1.xml new file mode 100644 index 0000000..1720158 --- /dev/null +++ b/kotlin/robot-name/.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/robot-name/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_junit_1_1_1.xml b/kotlin/robot-name/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_junit_1_1_1.xml new file mode 100644 index 0000000..21c5d19 --- /dev/null +++ b/kotlin/robot-name/.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/robot-name/.idea/misc.xml b/kotlin/robot-name/.idea/misc.xml new file mode 100644 index 0000000..3e1805e --- /dev/null +++ b/kotlin/robot-name/.idea/misc.xml @@ -0,0 +1,22 @@ + + + + + + + + + + 1.8 + + + + + + + + \ No newline at end of file diff --git a/kotlin/robot-name/.idea/modules.xml b/kotlin/robot-name/.idea/modules.xml new file mode 100644 index 0000000..f160b77 --- /dev/null +++ b/kotlin/robot-name/.idea/modules.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/robot-name/.idea/modules/robot-name_main.iml b/kotlin/robot-name/.idea/modules/robot-name_main.iml new file mode 100644 index 0000000..2e889cf --- /dev/null +++ b/kotlin/robot-name/.idea/modules/robot-name_main.iml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/robot-name/.idea/modules/robot-name_test.iml b/kotlin/robot-name/.idea/modules/robot-name_test.iml new file mode 100644 index 0000000..c9c923c --- /dev/null +++ b/kotlin/robot-name/.idea/modules/robot-name_test.iml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/robot-name/.idea/workspace.xml b/kotlin/robot-name/.idea/workspace.xml new file mode 100644 index 0000000..f4ec051 --- /dev/null +++ b/kotlin/robot-name/.idea/workspace.xml @@ -0,0 +1,1016 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1496670481694 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/robot-name/README.md b/kotlin/robot-name/README.md new file mode 100644 index 0000000..ea95b91 --- /dev/null +++ b/kotlin/robot-name/README.md @@ -0,0 +1,24 @@ +# Robot Name + +Manage robot factory settings. + +When robots come off the factory floor, they have no name. + +The first time you boot them up, a random name is generated in the format +of two uppercase letters followed by three digits, such as RX837 or BC811. + +Every once in a while we need to reset a robot to its factory settings, +which means that their name gets wiped. The next time you ask, it will +respond with a new random name. + +The names must be random: they should not follow a predictable sequence. +Random names means a risk of collisions. Your solution must ensure that +every existing robot has a unique name. + +## Source + +A debugging session with Paul Blackwell at gSchool. [http://gschool.it](http://gschool.it) + +## 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/robot-name/build.gradle b/kotlin/robot-name/build.gradle new file mode 100644 index 0000000..16c36c0 --- /dev/null +++ b/kotlin/robot-name/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/robot-name/build/classes/main/Robot.class b/kotlin/robot-name/build/classes/main/Robot.class new file mode 100644 index 0000000000000000000000000000000000000000..29a624df5e4f76ce3aa7901b51a54e9360412230 GIT binary patch literal 2158 zcmaJ?TT|Os5dMyQk*vsI+(58%DNWMGm=F^ZAcT|zoSVToiAe~AwyA8ZMqo>fBs1+B z4{iTOXWEDMv7Kol)68@j9{bk!{+6b@vPeuwJ7b^SbN1}FyWgI3^yfdn{{dhWYXXt7 zU9mkGLLjlOZ|S*)Zq;)SD(gm-Rzm_|OK%zi$>JO9qUV@aeM;b5(RS*&b;GMTx@oyN z-Lh;?_e`7glI@jRjRx(K>xNhIL5^nzkHTn(AR2=Nm4bO|rb`}0KP&ci4}5zwM_mV( zXvYoOGJJDdK|E4RMY%$b&FIF{bX6)euzHLI?Sq`-;lno-?&s5_Jr?I^fG zrUDl_L$oQFdRI^l$I+|eJ@gTOjzRGSLK#j*s~eW#=$^s#YDgodQeh_rpx`uxew)MD zmf5Hoj*RyOqBl&-^rkg@fRu^>oTVjwbJMVD0>hn|1@s@KGC-Tsa2_8r#76?@nc4j9 zJ9qEhFU-vs7fKHvJ}NIhezNp*dF7dcjKJ}OjLW)Jvzu*frlRnU%8xE-$YO|VyeOb} zcH3RUB`$mbIRSO#^5~VTW8)LoCKX(!IUlEkDD4y1^2|oA9bU#&6=PhwY#CpA)H$Eo zf`$oPW6PvKU(jQR4yxg@BZ+xBtaM!BRoif?#*9}qbeDW1nL=TZyg$aYiW|6j=#aOw zkTF9%pt!c<}m|5JWrRtjQ%n(L6Qy9!^xQlyixi4@klmCD2=eYKH0b$a=KovMv z{q+s%sFo7e9K&ll)&U_32Q8Yery|TO^b~_)7Yt9Y>7Gt5QgbUrw^#5GrD?^Vfz5wNZg? zhaZ?>Zu|2ly%Kaz{L6i5gSb6eZdsn$Gz!+1>6(>>G4tjHA?EXT&3}6As@_=A9aE2qG=hWR5zw+ zcarpAk^Gz+KvMQ)4_$G7#dMnGxEmxR*zu6oZm1mG0D$b0P+=4!j{S8nc~n(46N+p-18k=$cB@HyBH>I2P20q zk>qHH(-!}$bMX%9+MNqiwh?muf?Op$ zN1bGyfF9H8lU0NYSn_{Qv3xLFp#?nSVRaS4#V7c56+JHEE>62hxrq3R;v(jv%SE?~ Rw2Q2ZyuV&{(eEpt{R=Vlwd4Q* literal 0 HcmV?d00001 diff --git a/kotlin/robot-name/build/classes/test/RobotTest$Companion.class b/kotlin/robot-name/build/classes/test/RobotTest$Companion.class new file mode 100644 index 0000000000000000000000000000000000000000..2acd59fae2d704246f723bc8fafce16dafd54b8c GIT binary patch literal 1604 zcmb7F-%lGy5dQXTpU;Pj57SVe%3Wh``)sW%i6lJsaq+M=670s&Wh14PJV-; zmg7dk(yxBeskgNDCL<=uy>SNSM@d|pfJ~?+?VhSMy^rftw~r@|AwBNawKGW#Q4ZSF zp4n>PaIeWjm$y98Pzyt*>iVMA>$XHVwB+hNU%Fkf>z})kONX{6)5Va#={?{fk)YCE zJ7yjRz0eU)Ty;l!*Y`zO_IMPjK3*C^G^gOPLG_PQWk54Cr{;$A2c)g30+EdWf%I=A zHEhwE9@y{}W=VTUU%hWh;p^c(NiwTClk5toOpzMNOz9HZOJr9s@%BqB|4OC-7ya1`y`b|ar$_|X^`58lX~F-iga|6nt>R;p+F7y z@hwTS50t`JSi&~xPf0IP-0BfxyZEI4xreopW|INyYS}mfi|8-m(<7uK%trVu!b*hC TBYY7d5kZfT=^JzX^~-+&P4ixf literal 0 HcmV?d00001 diff --git a/kotlin/robot-name/build/classes/test/RobotTest.class b/kotlin/robot-name/build/classes/test/RobotTest.class new file mode 100644 index 0000000000000000000000000000000000000000..8a9bee25a0afa7d56fc11b2512198833bcd31c20 GIT binary patch literal 2340 zcmaJ?ZBr9h6n<`AH%pKtDsR#ff!2V)BDS>^wdEyNGz1${Dxjq|*$XTryL5NMIO90O zkLWMxr+%#3ic@Afj34`>Iz4xH2`RCiN$x%O+;gAv_T0OF{r$(E0H(3SkSJLd%PkAX zje{|ycKANmYTVq?mMc4=O4=|()RsmJ@q%YP!!TU1>@96axD}flrlWDwv|R2Q7Rg1+ zEjDU3vQoB$>zyD!xzXTo5>dnw2tj3txZ8%q(BW^%DCkstn>$5b7YyOt=nBQ;`)Zhm zs|6;Bd8@w1O>)O@@$~RWQ$3SJ8X4*3JcaMY5XVKrrigs(3lz|4vX5NbFt_Mb4|-K} zqmSXdcS<@ug^lA9LxxwY!f{3nXNA`c-G>{?y*G?@7o%%Qe1H#C3}BF<=WGab4Wp(D zJC4f?v0Db^d?$%vbg3A^2vy1pDr-`CvI;&X8@{(EOr2pO_a0wussNr6&0$nxjxh{o zbwf9=xY;^)tJ_)eY>)ab^z0sYU16J(3dX6GuI1M#iAhxpCh&9(3RPJfYc7s~kom*=QW@dCHiR<`8B`SW(a9KAtH-#-spEJ%qzAqL|RI-o&pN@7bqlb7gLm1;~pV8{i`BNG1)&`5QUZUxc19W9AG?#f$npCNs+za(6) zbC;8^P<=m4F9VZ9jFuH|2?n-HE1jCUdwejUhI&J4D0O_Gh7=OyLJ5;X&XL~ZgKWoi zXo}rr9dprlKgURaUrELLLsQDVI7x}7r20}RoeGl_AzMW~KIo4q(Nyf+FR`R_NmV8H zUABCHCS)Zy>h$0+T+5w=zq4Q03{x_d*R%zn3G?(0xpt%KTJ{pRcZKayZ5WT`wOgg! z+e#D1Iz#9B?8MsB=hH8q=+CdeQ1DdNvAw5~8pGI7@dQ6GB%ANVyxh~?Zs(UAPJ(=N+T;O zKcZv5q2pH)LJ%}2eI?DEwA!S;Qj3PoCIuW&(Py+Qw5WREbkdWerQ zSKi=ipd~3YLBktNy~SrQ=}4md49;YUp3l(ubP%nb*xbK@(DAhgcX3 zYVkWd&Q>AS;>WLYjM&skzP@f^O?i1!Wsfkh$_}yi8W)c6WHs~sA^2-NkeIAVjSeJI zeYl6kfDQv*K0xFZ9!Of9TFO4Qk|>OA+7F=ugJzX12WXW>pO@u2tqatHrFDcCQS^Sx vczCk5t;SpInDC668bUO04;-Jex)IrRF;vnJRhNnE|;I@ObgYW(Uo*Vl7 literal 0 HcmV?d00001 diff --git a/kotlin/robot-name/build/kotlin-build/caches/version.txt b/kotlin/robot-name/build/kotlin-build/caches/version.txt new file mode 100644 index 0000000..01aabac --- /dev/null +++ b/kotlin/robot-name/build/kotlin-build/caches/version.txt @@ -0,0 +1 @@ +11001 \ No newline at end of file diff --git a/kotlin/robot-name/robot-name.iml b/kotlin/robot-name/robot-name.iml new file mode 100644 index 0000000..8fd4924 --- /dev/null +++ b/kotlin/robot-name/robot-name.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/robot-name/src/main/kotlin/.keep b/kotlin/robot-name/src/main/kotlin/.keep new file mode 100644 index 0000000..e69de29 diff --git a/kotlin/robot-name/src/main/kotlin/Robot.kt b/kotlin/robot-name/src/main/kotlin/Robot.kt new file mode 100644 index 0000000..33eaabe --- /dev/null +++ b/kotlin/robot-name/src/main/kotlin/Robot.kt @@ -0,0 +1,28 @@ +import java.util.Random + + +class Robot { + var name: String = generateName() + + fun reset(){ + name = generateName() + } + + private fun generateName(): String{ + var nameString: String = "" + nameString += generateRandomString(1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ") + nameString += generateRandomString(2, "0123456789") + return nameString + } + + private fun generateRandomString(length: Int, charList: String): String{ + var returnString: String = "" + val rng: Random = Random() + for (i in (0..length)){ + returnString += charList[rng.nextInt().coerceAtLeast(0).rem(charList.length)] + } + return returnString + } + + +} \ No newline at end of file diff --git a/kotlin/robot-name/src/test/kotlin/RobotTest.kt b/kotlin/robot-name/src/test/kotlin/RobotTest.kt new file mode 100644 index 0000000..0dda6dc --- /dev/null +++ b/kotlin/robot-name/src/test/kotlin/RobotTest.kt @@ -0,0 +1,36 @@ +import org.junit.Test +import org.junit.Ignore +import kotlin.test.assertNotEquals +import kotlin.test.assertTrue + +class RobotTest { + + companion object { + val EXPECTED_ROBOT_NAME_PATTERN = Regex("[A-Z]{2}\\d{3}") + private fun isValidName(name: String) = EXPECTED_ROBOT_NAME_PATTERN.matches(name) + } + + val robot = Robot() + + + @Test + fun hasName() { + assertTrue(isValidName(robot.name), "Robot name ${robot.name} didn't match expected pattern.") + } + + @Test + fun differentRobotsHaveDifferentNames() { + assertNotEquals(robot.name, Robot().name) + } + + @Test + fun resetName() { + val name = robot.name + robot.reset() + + val name2 = robot.name + assertNotEquals(name, name2) + assertTrue(isValidName(name2), "Robot name $name2 didn't match expected pattern.") + } + +}