From 88a1bdbcd72369ac3ca4496c329bbdfdeb69c9b7 Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Mon, 5 Jun 2017 17:37:38 -0400 Subject: [PATCH] Kotlin - Difference Of Squares 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 + .../difference-of-squares/.idea/compiler.xml | 9 + kotlin/difference-of-squares/.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/difference-of-squares/.idea/misc.xml | 6 + .../difference-of-squares/.idea/modules.xml | 10 + .../modules/difference-of-squares_main.iml | 40 + .../modules/difference-of-squares_test.iml | 46 + .../difference-of-squares/.idea/workspace.xml | 890 ++++++++++++++++++ kotlin/difference-of-squares/README.md | 21 + kotlin/difference-of-squares/build.gradle | 28 + .../build/classes/main/Squares.class | Bin 0 -> 1132 bytes .../build/classes/test/SquaresTest.class | Bin 0 -> 2303 bytes .../build/kotlin-build/caches/version.txt | 1 + .../difference-of-squares.iml | 12 + .../src/main/kotlin/.keep | 0 .../src/main/kotlin/Squares.kt | 22 + .../src/test/kotlin/SquaresTest.kt | 73 ++ kotlin/nucleotide-count/.idea/workspace.xml | 8 +- 28 files changed, 1250 insertions(+), 4 deletions(-) create mode 100644 kotlin/difference-of-squares/.gradle/3.5/file-changes/last-build.bin create mode 100644 kotlin/difference-of-squares/.gradle/3.5/taskHistory/taskHistory.lock create mode 100644 kotlin/difference-of-squares/.gradle/buildOutputCleanup/built.bin create mode 100644 kotlin/difference-of-squares/.gradle/buildOutputCleanup/cache.properties create mode 100644 kotlin/difference-of-squares/.gradle/buildOutputCleanup/cache.properties.lock create mode 100644 kotlin/difference-of-squares/.idea/compiler.xml create mode 100644 kotlin/difference-of-squares/.idea/gradle.xml create mode 100644 kotlin/difference-of-squares/.idea/libraries/Gradle__junit_junit_4_12.xml create mode 100644 kotlin/difference-of-squares/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml create mode 100644 kotlin/difference-of-squares/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml create mode 100644 kotlin/difference-of-squares/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_1.xml create mode 100644 kotlin/difference-of-squares/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_1_1_1.xml create mode 100644 kotlin/difference-of-squares/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_junit_1_1_1.xml create mode 100644 kotlin/difference-of-squares/.idea/misc.xml create mode 100644 kotlin/difference-of-squares/.idea/modules.xml create mode 100644 kotlin/difference-of-squares/.idea/modules/difference-of-squares_main.iml create mode 100644 kotlin/difference-of-squares/.idea/modules/difference-of-squares_test.iml create mode 100644 kotlin/difference-of-squares/.idea/workspace.xml create mode 100644 kotlin/difference-of-squares/README.md create mode 100644 kotlin/difference-of-squares/build.gradle create mode 100644 kotlin/difference-of-squares/build/classes/main/Squares.class create mode 100644 kotlin/difference-of-squares/build/classes/test/SquaresTest.class create mode 100644 kotlin/difference-of-squares/build/kotlin-build/caches/version.txt create mode 100644 kotlin/difference-of-squares/difference-of-squares.iml create mode 100644 kotlin/difference-of-squares/src/main/kotlin/.keep create mode 100644 kotlin/difference-of-squares/src/main/kotlin/Squares.kt create mode 100644 kotlin/difference-of-squares/src/test/kotlin/SquaresTest.kt diff --git a/kotlin/difference-of-squares/.gradle/3.5/file-changes/last-build.bin b/kotlin/difference-of-squares/.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/difference-of-squares/.gradle/3.5/taskHistory/taskHistory.lock b/kotlin/difference-of-squares/.gradle/3.5/taskHistory/taskHistory.lock new file mode 100644 index 0000000000000000000000000000000000000000..92b4841ac2b3404baa716b41ad80f4432becc365 GIT binary patch literal 17 TcmZSXZ`z)_b?&-z3{U_7J)#8% literal 0 HcmV?d00001 diff --git a/kotlin/difference-of-squares/.gradle/buildOutputCleanup/built.bin b/kotlin/difference-of-squares/.gradle/buildOutputCleanup/built.bin new file mode 100644 index 0000000..e69de29 diff --git a/kotlin/difference-of-squares/.gradle/buildOutputCleanup/cache.properties b/kotlin/difference-of-squares/.gradle/buildOutputCleanup/cache.properties new file mode 100644 index 0000000..2c3f2d7 --- /dev/null +++ b/kotlin/difference-of-squares/.gradle/buildOutputCleanup/cache.properties @@ -0,0 +1,2 @@ +#Mon Jun 05 17:32:44 EDT 2017 +gradle.version=3.5 diff --git a/kotlin/difference-of-squares/.gradle/buildOutputCleanup/cache.properties.lock b/kotlin/difference-of-squares/.gradle/buildOutputCleanup/cache.properties.lock new file mode 100644 index 0000000..40fdece --- /dev/null +++ b/kotlin/difference-of-squares/.gradle/buildOutputCleanup/cache.properties.lock @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/kotlin/difference-of-squares/.idea/compiler.xml b/kotlin/difference-of-squares/.idea/compiler.xml new file mode 100644 index 0000000..b2c9a46 --- /dev/null +++ b/kotlin/difference-of-squares/.idea/compiler.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/kotlin/difference-of-squares/.idea/gradle.xml b/kotlin/difference-of-squares/.idea/gradle.xml new file mode 100644 index 0000000..20d2df6 --- /dev/null +++ b/kotlin/difference-of-squares/.idea/gradle.xml @@ -0,0 +1,19 @@ + + + + + + \ No newline at end of file diff --git a/kotlin/difference-of-squares/.idea/libraries/Gradle__junit_junit_4_12.xml b/kotlin/difference-of-squares/.idea/libraries/Gradle__junit_junit_4_12.xml new file mode 100644 index 0000000..04c10dd --- /dev/null +++ b/kotlin/difference-of-squares/.idea/libraries/Gradle__junit_junit_4_12.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/difference-of-squares/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml b/kotlin/difference-of-squares/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml new file mode 100644 index 0000000..8262f72 --- /dev/null +++ b/kotlin/difference-of-squares/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/difference-of-squares/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml b/kotlin/difference-of-squares/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml new file mode 100644 index 0000000..4f32fde --- /dev/null +++ b/kotlin/difference-of-squares/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/difference-of-squares/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_1.xml b/kotlin/difference-of-squares/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_1.xml new file mode 100644 index 0000000..7b6f562 --- /dev/null +++ b/kotlin/difference-of-squares/.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/difference-of-squares/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_1_1_1.xml b/kotlin/difference-of-squares/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_1_1_1.xml new file mode 100644 index 0000000..1720158 --- /dev/null +++ b/kotlin/difference-of-squares/.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/difference-of-squares/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_junit_1_1_1.xml b/kotlin/difference-of-squares/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_test_junit_1_1_1.xml new file mode 100644 index 0000000..21c5d19 --- /dev/null +++ b/kotlin/difference-of-squares/.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/difference-of-squares/.idea/misc.xml b/kotlin/difference-of-squares/.idea/misc.xml new file mode 100644 index 0000000..84da703 --- /dev/null +++ b/kotlin/difference-of-squares/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/kotlin/difference-of-squares/.idea/modules.xml b/kotlin/difference-of-squares/.idea/modules.xml new file mode 100644 index 0000000..5e71bba --- /dev/null +++ b/kotlin/difference-of-squares/.idea/modules.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/difference-of-squares/.idea/modules/difference-of-squares_main.iml b/kotlin/difference-of-squares/.idea/modules/difference-of-squares_main.iml new file mode 100644 index 0000000..bf04317 --- /dev/null +++ b/kotlin/difference-of-squares/.idea/modules/difference-of-squares_main.iml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/difference-of-squares/.idea/modules/difference-of-squares_test.iml b/kotlin/difference-of-squares/.idea/modules/difference-of-squares_test.iml new file mode 100644 index 0000000..8855355 --- /dev/null +++ b/kotlin/difference-of-squares/.idea/modules/difference-of-squares_test.iml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/difference-of-squares/.idea/workspace.xml b/kotlin/difference-of-squares/.idea/workspace.xml new file mode 100644 index 0000000..7aadafa --- /dev/null +++ b/kotlin/difference-of-squares/.idea/workspace.xml @@ -0,0 +1,890 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @ignore + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1496698361125 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/difference-of-squares/README.md b/kotlin/difference-of-squares/README.md new file mode 100644 index 0000000..c3e1515 --- /dev/null +++ b/kotlin/difference-of-squares/README.md @@ -0,0 +1,21 @@ +# Difference Of Squares + +Find the difference between the square of the sum and the sum of the squares of the first N natural numbers. + +The square of the sum of the first ten natural numbers is +(1 + 2 + ... + 10)² = 55² = 3025. + +The sum of the squares of the first ten natural numbers is +1² + 2² + ... + 10² = 385. + +Hence the difference between the square of the sum of the first +ten natural numbers and the sum of the squares of the first ten +natural numbers is 3025 - 385 = 2640. + +## Source + +Problem 6 at Project Euler [http://projecteuler.net/problem=6](http://projecteuler.net/problem=6) + +## 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/difference-of-squares/build.gradle b/kotlin/difference-of-squares/build.gradle new file mode 100644 index 0000000..16c36c0 --- /dev/null +++ b/kotlin/difference-of-squares/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/difference-of-squares/build/classes/main/Squares.class b/kotlin/difference-of-squares/build/classes/main/Squares.class new file mode 100644 index 0000000000000000000000000000000000000000..ffab36692c905e934a33b81ea10e22704a09ded3 GIT binary patch literal 1132 zcma)6%}*0i5dXcm?Y3REWm};@KLq@QDinw}kwi^MY6>J&d*OiFb_)x8rvO z-WsK!E6rDZPE`|WOd1GbiXmBUb-lK5iyMw-H*C+Qvb=MsQPWHboy?kVg2=YWYAiGC z9v`I)KFJMk9UmF=a4Tx?Xk_yEXoWAa2l13{@eE(mPG0NW3O&-Th_XmW2Rf$oc5;Y{ zQkG088n*P4ce2QTqoGTz!R@{cD=P>KO5LarQ7e-opqt$Q`>#l6CI~2q@ervUAODmp6I#~ z%QW+l8V*uwi*yPjsg^;WIkH|1;1rtf7i> ze*k6>In%7_0F*X~@nMD{`II-Trh4&m_@B!PoW=x6wU#w1#Yr25FUSV!Z literal 0 HcmV?d00001 diff --git a/kotlin/difference-of-squares/build/classes/test/SquaresTest.class b/kotlin/difference-of-squares/build/classes/test/SquaresTest.class new file mode 100644 index 0000000000000000000000000000000000000000..df6269f28ac8d84b612695bff1475d16c5b292ff GIT binary patch literal 2303 zcmai$O>^5+6o%g`#~+oI#13idI4N!8(At4Sj%g^=r8NCW>S9RSbTY$a!6^21P-4r2 zubeGm!H;0eiebSF8`^;xCetN5egZ#(4a2#TeEp%AdTi;OqjT?b&U++{|NQs2KLC`l z&5+#vx@&c~c)^7m2V+PbStpj+w46h8=irFfC>mifgqOC{*zLA97$W(?9;H^>okR1e z>)5U-*OwX6{nZu6<%hfzM}i@KVl}&br@=6nuN11Gq_P1WNgWqpP;yXG98(OjJ2q{9 zmtley?iolStz#N9RQW(jUPToHv$!a)&M{<;+iuf#Oqc31H-+FG*KRxFQ)(x}Fl%{{ zN7PhPEZ2F%>NZ`5YJQ+Jzx(q4Mt0qf?HraX;UrmW77IG&u}HQnbmEP@cx`gd}Gizuvp5TJKU+! zNP>MSTknSryzB4!-uc;7#l?QM+C(zv&W%$q-~4kzo7HFtws5)QK2$}>sm63n;C;G* zs=?qsgx>OpPkO?T1L~g)Y+-7C8R;WL^5-B zTGEQ_e)RPZF$z6Nq#{|ZIPo}6R#aIrWyO`1P}T)y>B>qf%TU&&vZj3N^^dV>Szw7# z@yPatS#38~{ZWfATbAw6=z=lG$7t=CZpDcQ?K)?eskUoYbI=iEmLYFl>@RoY1cpF#9dq_W>uE=8+NjxGeMw`Xy zoW@m!coHBM)5*UAL`r`HV==@?VS#oXW?WMY)yB+H4^e*uVj+Z>qc$#$AaV-vIA|lA zx-}%!^|3-_Lxe?oDO?^Q+)#wRQ0&`Y7rs#A8DXK8NT}QhBd-{Jp$a{OFVuKMSg1S+ zRTx36D8zOk)O;i$M7&9?j@4;Cq|+KQFh>Au3ZQyOM4;v#0Qz81J z(4Y2n@<%bA5gx^D8bx`8QB(}o#>{#T;g4cGBHYG3YGZQ*QBsI!!63#IJW4l1=ZInx^G;D$h6ASZC| EKZS3E5C8xG literal 0 HcmV?d00001 diff --git a/kotlin/difference-of-squares/build/kotlin-build/caches/version.txt b/kotlin/difference-of-squares/build/kotlin-build/caches/version.txt new file mode 100644 index 0000000..01aabac --- /dev/null +++ b/kotlin/difference-of-squares/build/kotlin-build/caches/version.txt @@ -0,0 +1 @@ +11001 \ No newline at end of file diff --git a/kotlin/difference-of-squares/difference-of-squares.iml b/kotlin/difference-of-squares/difference-of-squares.iml new file mode 100644 index 0000000..577f3d6 --- /dev/null +++ b/kotlin/difference-of-squares/difference-of-squares.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/kotlin/difference-of-squares/src/main/kotlin/.keep b/kotlin/difference-of-squares/src/main/kotlin/.keep new file mode 100644 index 0000000..e69de29 diff --git a/kotlin/difference-of-squares/src/main/kotlin/Squares.kt b/kotlin/difference-of-squares/src/main/kotlin/Squares.kt new file mode 100644 index 0000000..825f752 --- /dev/null +++ b/kotlin/difference-of-squares/src/main/kotlin/Squares.kt @@ -0,0 +1,22 @@ +class Squares(val firstNNumbers: Int) { + fun squareOfSum(): Int{ + var sum: Int = 0 + for (i in 0..firstNNumbers){ + sum += i + } + + return sum * sum + } + + fun sumOfSquares(): Int{ + var sum: Int = 0 + for (i in 0..firstNNumbers){ + sum += i*i + } + return sum + } + + fun difference(): Int{ + return squareOfSum()-sumOfSquares() + } +} \ No newline at end of file diff --git a/kotlin/difference-of-squares/src/test/kotlin/SquaresTest.kt b/kotlin/difference-of-squares/src/test/kotlin/SquaresTest.kt new file mode 100644 index 0000000..377952e --- /dev/null +++ b/kotlin/difference-of-squares/src/test/kotlin/SquaresTest.kt @@ -0,0 +1,73 @@ +import org.junit.Test +import org.junit.Ignore +import kotlin.test.assertEquals + +class SquaresTest { + + + @Test + fun squareOfSum5() { + assertEquals(225, Squares(5).squareOfSum()) + } + + + @Test + fun squareOfSum10() { + assertEquals(3025, Squares(10).squareOfSum()) + } + + + @Test + fun squareOfSum100() { + assertEquals(25502500, Squares(100).squareOfSum()) + } + + + @Test + fun sumOfSquares5() { + assertEquals(55, Squares(5).sumOfSquares()) + } + + + @Test + fun sumOfSquares10() { + assertEquals(385, Squares(10).sumOfSquares()) + } + + + @Test + fun sumOfSquares100() { + assertEquals(338350, Squares(100).sumOfSquares()) + } + + + @Test + fun differenceOfSquares0() { + assertEquals(0, Squares(0).difference()) + } + + + @Test + fun differenceOfSquares5() { + assertEquals(170, Squares(5).difference()) + } + + + @Test + fun differenceOfSquares10() { + assertEquals(2640, Squares(10).difference()) + } + + + @Test + fun differenceOfSquares100() { + assertEquals(25164150, Squares(100).difference()) + } + + + @Test + fun consistentDifference() { + assertEquals(Squares(0).difference(), Squares(0).difference()) + } + +} diff --git a/kotlin/nucleotide-count/.idea/workspace.xml b/kotlin/nucleotide-count/.idea/workspace.xml index c093b71..45eb6b2 100644 --- a/kotlin/nucleotide-count/.idea/workspace.xml +++ b/kotlin/nucleotide-count/.idea/workspace.xml @@ -262,7 +262,7 @@