Kotlin - List Ops MVP
This commit is contained in:
parent
66e93e01db
commit
68db136a6d
3 changed files with 191 additions and 6 deletions
20
kotlin/list-ops/README.md
Normal file
20
kotlin/list-ops/README.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# List Ops
|
||||
|
||||
Implement basic list operations.
|
||||
|
||||
In functional languages list operations like `length`, `map`, and
|
||||
`reduce` are very common. Implement a series of basic list operations,
|
||||
without using existing functions.
|
||||
|
||||
## Hints
|
||||
|
||||
The tests for this exercise require you to use extensions, a mechanism for adding new functionality to an existing class whose source you do not directly control without having to subclass it. To learn more about Kotlin's implementations of extensions, check out the [official documentation](https://kotlinlang.org/docs/reference/extensions.html#extensions).
|
||||
|
||||
The `customFoldLeft` and `customFoldRight` methods are "fold" functions, which is a concept well-known in the functional programming world, but less so in the object-oriented one. If you'd like more background information, check out this [fold](https://en.wikipedia.org/wiki/Fold_(higher-order_function)) page.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## Submitting Incomplete Solutions
|
||||
It's possible to submit an incomplete solution so you can see how others have completed the exercise.
|
|
@ -10,18 +10,28 @@ fun <T> List<T>.customFilter(inpFunc: (T) -> Boolean): List<T>{
|
|||
return emptyList<T>()
|
||||
}
|
||||
|
||||
fun <T> List<T>.customSize() : Int{
|
||||
return 0
|
||||
fun <T, R> List<T>.customMap(inpFunc: (T) -> R): List<R>{
|
||||
return emptyList<R>()
|
||||
}
|
||||
|
||||
val <T> List<T>.customSize: Int
|
||||
get() {
|
||||
var size = 0
|
||||
for (i in this){
|
||||
size++
|
||||
}
|
||||
return size
|
||||
}
|
||||
|
||||
|
||||
fun <T> List<T>.customReverse(): List<T>{
|
||||
return emptyList<T>()
|
||||
}
|
||||
|
||||
fun <T> List<T>.customFoldLeft(acc: T, inpFunc: (T, T) -> T): List<T>{
|
||||
return emptyList<T>()
|
||||
fun <T, R> List<T>.customFoldLeft(acc: R, inpFunc: (R, T) -> R): R {
|
||||
return inpFunc(acc, acc as T)
|
||||
}
|
||||
|
||||
fun <T> List<T>.customFoldRight(acc: T, inpFunc: (T, T) -> T): List<T>{
|
||||
return emptyList<T>()
|
||||
fun <T, R> List<T>.customFoldRight(acc: R, inpFunc: (T, R) -> R): R{
|
||||
return inpFunc(acc as T, acc)
|
||||
}
|
155
kotlin/list-ops/src/test/kotlin/ListExtensionsTest.kt
Normal file
155
kotlin/list-ops/src/test/kotlin/ListExtensionsTest.kt
Normal file
|
@ -0,0 +1,155 @@
|
|||
import org.junit.Ignore
|
||||
import org.junit.Test
|
||||
import kotlin.test.assertEquals
|
||||
|
||||
/*
|
||||
* version: 1.0.0
|
||||
*/
|
||||
class ListExtensionsTest {
|
||||
|
||||
@Test
|
||||
fun testAppendingEmptyLists() {
|
||||
assertEquals(
|
||||
emptyList(),
|
||||
emptyList<Int>().customAppend(emptyList()))
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
fun testAppendingNonEmptyListOnEmptyList() {
|
||||
assertEquals(
|
||||
listOf('1', '2', '3', '4'),
|
||||
emptyList<Char>().customAppend(listOf('1', '2', '3', '4')))
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
fun testAppendingNonEmptyListOnNonEmptyList() {
|
||||
assertEquals(
|
||||
listOf("1", "2", "2", "3", "4", "5"),
|
||||
listOf("1", "2").customAppend(listOf("2", "3", "4", "5")))
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
fun testConcatOnEmptyListOfLists() {
|
||||
assertEquals(
|
||||
emptyList(),
|
||||
emptyList<List<Int>>().customConcat())
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
fun testConcatOnNonEmptyListOfLists() {
|
||||
assertEquals(
|
||||
listOf('1', '2', '3', '4', '5', '6'),
|
||||
listOf(listOf('1', '2'), listOf('3'), emptyList(), listOf('4', '5', '6')).customConcat())
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
fun testFilteringEmptyList() {
|
||||
assertEquals(
|
||||
emptyList(),
|
||||
emptyList<Int>().customFilter { it % 2 == 1 })
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
fun testFilteringNonEmptyList() {
|
||||
assertEquals(
|
||||
listOf(1, 3, 5),
|
||||
listOf(1, 2, 3, 5).customFilter { it % 2 == 1 })
|
||||
}
|
||||
|
||||
@Test
|
||||
fun testSizeOfEmptyList() {
|
||||
assertEquals(0, emptyList<Int>().customSize)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun testSizeOfNonEmptyList() {
|
||||
assertEquals(4, listOf("one", "two", "three", "four").customSize)
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
fun testTransformingEmptyList() {
|
||||
assertEquals(
|
||||
emptyList(),
|
||||
emptyList<Int>().customMap { it -> it + 1 })
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
fun testTransformingNonEmptyList() {
|
||||
assertEquals(
|
||||
listOf(2, 4, 6, 8),
|
||||
listOf(1, 3, 5, 7).customMap { it -> it + 1 })
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
fun testFoldLeftOnEmptyList() {
|
||||
assertEquals(
|
||||
2.0,
|
||||
emptyList<Int>().customFoldLeft(2.0, Double::times))
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
fun testFoldLeftWithDirectionIndependentOperationOnNonEmptyList() {
|
||||
assertEquals(
|
||||
15,
|
||||
listOf(1, 2, 3, 4).customFoldLeft(5, Int::plus))
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
fun testFoldLeftWithDirectionDependentOperationOnNonEmptyList() {
|
||||
assertEquals(
|
||||
0,
|
||||
listOf(2, 5).customFoldLeft(5, Int::div))
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
fun testFoldRightOnEmptyList() {
|
||||
assertEquals(
|
||||
2.0,
|
||||
emptyList<Double>().customFoldRight(2.0, Double::times))
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
fun testFoldRightWithDirectionIndependentOperationOnNonEmptyList() {
|
||||
assertEquals(
|
||||
15,
|
||||
listOf(1, 2, 3, 4).customFoldRight(5, Int::plus))
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
fun testFoldRightWithDirectionDependentOperationOnNonEmptyList() {
|
||||
assertEquals(
|
||||
2,
|
||||
listOf(2, 5).customFoldRight(5, Int::div))
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
fun testReversingEmptyList() {
|
||||
assertEquals(
|
||||
emptyList(),
|
||||
emptyList<Int>().customReverse())
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
fun testReversingNonEmptyList() {
|
||||
assertEquals(
|
||||
listOf('7', '5', '3', '1'),
|
||||
listOf('1', '3', '5', '7').customReverse())
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Reference in a new issue