From 8f4880989555fe93ed3c11fcf689576655de71b5 Mon Sep 17 00:00:00 2001 From: AnthonyS Date: Tue, 5 Sep 2017 18:18:32 -0400 Subject: [PATCH] Kotlin - List Ops Complete --- kotlin/list-ops/src/main/kotlin/ListExt.kt | 58 +++++++++++++++---- .../src/test/kotlin/ListExtensionsTest.kt | 16 ----- 2 files changed, 48 insertions(+), 26 deletions(-) diff --git a/kotlin/list-ops/src/main/kotlin/ListExt.kt b/kotlin/list-ops/src/main/kotlin/ListExt.kt index efd277e..301b170 100644 --- a/kotlin/list-ops/src/main/kotlin/ListExt.kt +++ b/kotlin/list-ops/src/main/kotlin/ListExt.kt @@ -1,17 +1,41 @@ fun List.customAppend(inpList: List): List{ - return emptyList() + val newList = mutableListOf() + + newList.addAll(this) + + newList.addAll(inpList) + + return newList } fun List>.customConcat(): List{ - return emptyList() + val newList = mutableListOf() + + this.forEach { newList.addAll(it) } + + return newList } fun List.customFilter(inpFunc: (T) -> Boolean): List{ - return emptyList() + val newList = mutableListOf() + + for (i in this){ + if (inpFunc(i)){ + newList.add(i) + } + } + + return newList } fun List.customMap(inpFunc: (T) -> R): List{ - return emptyList() + val newList = mutableListOf() + + for (i in this){ + newList.add(inpFunc(i)) + } + + return newList } val List.customSize: Int @@ -24,14 +48,28 @@ val List.customSize: Int } -fun List.customReverse(): List{ - return emptyList() -} - fun List.customFoldLeft(acc: R, inpFunc: (R, T) -> R): R { - return inpFunc(acc, acc as T) + if (this.isEmpty()){ + return acc + } + + return this.drop(1).customFoldLeft(inpFunc(acc, this.first()), inpFunc) } fun List.customFoldRight(acc: R, inpFunc: (T, R) -> R): R{ - return inpFunc(acc as T, acc) + if (this.isEmpty()){ + return acc + } + + return inpFunc(first(), this.drop(1).customFoldRight(acc, inpFunc)) +} + +fun List.customReverse(): List{ + val newList = mutableListOf() + + for (i in this){ + newList.add(0, i) + } + + return newList } \ No newline at end of file diff --git a/kotlin/list-ops/src/test/kotlin/ListExtensionsTest.kt b/kotlin/list-ops/src/test/kotlin/ListExtensionsTest.kt index 565a8dc..34bce58 100644 --- a/kotlin/list-ops/src/test/kotlin/ListExtensionsTest.kt +++ b/kotlin/list-ops/src/test/kotlin/ListExtensionsTest.kt @@ -14,7 +14,6 @@ class ListExtensionsTest { emptyList().customAppend(emptyList())) } - @Ignore @Test fun testAppendingNonEmptyListOnEmptyList() { assertEquals( @@ -22,7 +21,6 @@ class ListExtensionsTest { emptyList().customAppend(listOf('1', '2', '3', '4'))) } - @Ignore @Test fun testAppendingNonEmptyListOnNonEmptyList() { assertEquals( @@ -30,7 +28,6 @@ class ListExtensionsTest { listOf("1", "2").customAppend(listOf("2", "3", "4", "5"))) } - @Ignore @Test fun testConcatOnEmptyListOfLists() { assertEquals( @@ -38,7 +35,6 @@ class ListExtensionsTest { emptyList>().customConcat()) } - @Ignore @Test fun testConcatOnNonEmptyListOfLists() { assertEquals( @@ -46,7 +42,6 @@ class ListExtensionsTest { listOf(listOf('1', '2'), listOf('3'), emptyList(), listOf('4', '5', '6')).customConcat()) } - @Ignore @Test fun testFilteringEmptyList() { assertEquals( @@ -54,7 +49,6 @@ class ListExtensionsTest { emptyList().customFilter { it % 2 == 1 }) } - @Ignore @Test fun testFilteringNonEmptyList() { assertEquals( @@ -72,7 +66,6 @@ class ListExtensionsTest { assertEquals(4, listOf("one", "two", "three", "four").customSize) } - @Ignore @Test fun testTransformingEmptyList() { assertEquals( @@ -80,7 +73,6 @@ class ListExtensionsTest { emptyList().customMap { it -> it + 1 }) } - @Ignore @Test fun testTransformingNonEmptyList() { assertEquals( @@ -88,7 +80,6 @@ class ListExtensionsTest { listOf(1, 3, 5, 7).customMap { it -> it + 1 }) } - @Ignore @Test fun testFoldLeftOnEmptyList() { assertEquals( @@ -96,7 +87,6 @@ class ListExtensionsTest { emptyList().customFoldLeft(2.0, Double::times)) } - @Ignore @Test fun testFoldLeftWithDirectionIndependentOperationOnNonEmptyList() { assertEquals( @@ -104,7 +94,6 @@ class ListExtensionsTest { listOf(1, 2, 3, 4).customFoldLeft(5, Int::plus)) } - @Ignore @Test fun testFoldLeftWithDirectionDependentOperationOnNonEmptyList() { assertEquals( @@ -112,7 +101,6 @@ class ListExtensionsTest { listOf(2, 5).customFoldLeft(5, Int::div)) } - @Ignore @Test fun testFoldRightOnEmptyList() { assertEquals( @@ -120,7 +108,6 @@ class ListExtensionsTest { emptyList().customFoldRight(2.0, Double::times)) } - @Ignore @Test fun testFoldRightWithDirectionIndependentOperationOnNonEmptyList() { assertEquals( @@ -128,7 +115,6 @@ class ListExtensionsTest { listOf(1, 2, 3, 4).customFoldRight(5, Int::plus)) } - @Ignore @Test fun testFoldRightWithDirectionDependentOperationOnNonEmptyList() { assertEquals( @@ -136,7 +122,6 @@ class ListExtensionsTest { listOf(2, 5).customFoldRight(5, Int::div)) } - @Ignore @Test fun testReversingEmptyList() { assertEquals( @@ -144,7 +129,6 @@ class ListExtensionsTest { emptyList().customReverse()) } - @Ignore @Test fun testReversingNonEmptyList() { assertEquals(