kotlin
kotlin copied to clipboard
Exercism exercises in Kotlin.
This issue describes how to implement the `basics` concept exercise for the Kotlin track. ## Getting started **Please please please read the docs before starting.** Posting PRs without reading these...
See review comment: https://github.com/exercism/v3/pull/1831#discussion_r458084500
See https://github.com/exercism/v3/pull/1831#discussion_r458085563
The test "extract column from diff widths matrix" is not the same as the test "extract column where numbers have different widths" in [problem-specification](https://github.com/exercism/problem-specifications/blob/master/exercises/matrix/canonical-data.json), as it has multiple spaces in...
[Kotlin tracks maintenance dashboard ](https://tracks.exercism.io/kotlin) references *CONTRIBUTING.md* by label *CONTRIBUTING guidelines* in the [section](https://tracks.exercism.io/kotlin/master/unimplemented) dedicated to yet unimplemented slugs as the core intruction for appending a task to the track....
The main criterion is: "_If the sum is evenly divisible by 10, then the number is valid._" It should be: "_If the sum is divisible by 10, then the number...
In this exercise, there are two tests which don't seem to be correct: ```kotlin @Test fun reports1ForEmptyStringAndEmptyProduct() { assertEquals(1, Series("").getLargestProduct(0)) } @Test fun reports1ForNonEmptyStringAndEmptyProduct() { assertEquals(1, Series("123").getLargestProduct(0)) } ``` The...
More about [automated tests](https://github.com/exercism/automated-tests/blob/master/docs/docker.md) with docker. [Repository](https://github.com/exercism/kotlin-test-runner) for automated test runner.
[Migration Documentation/Checklist](https://exercism.github.io/v3/#/languages/kotlin/README). [New track directory](https://github.com/exercism/v3/tree/master/languages/kotlin). [Activity in this repository, related to v3 (mostly discussions)](https://github.com/exercism/kotlin/issues?utf8=%E2%9C%93&q=is%3Aopen+sort%3Aupdated-desc+label%3Ameta%3Av3+). [Kotlin language official documentation](https://kotlinlang.org/docs/reference/basic-syntax.html) (possible source of concepts).
[About concepts](https://exercism.github.io/v3/#/docs/concept-exercises) | [C# example](https://exercism.github.io/v3/#/languages/csharp/exercises/concept/README) My idea is to make exercism concepts close to the [official language documentation](https://kotlinlang.org/docs/reference/): - Kotlin reference is quite good; - it would be easier to...