kotlin-koans-edu-obsolete icon indicating copy to clipboard operation
kotlin-koans-edu-obsolete copied to clipboard

Obsolete: check https://github.com/Kotlin/kotlin-koans-edu for the latest version.

Results 14 kotlin-koans-edu-obsolete issues
Sort by recently updated
recently updated
newest added

Bumps [jackson-databind](https://github.com/FasterXML/jackson) from 2.9.9.1 to 2.9.10.1. Commits - See full diff in [compare view](https://github.com/FasterXML/jackson/commits) [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.fasterxml.jackson.core:jackson-databind&package-manager=maven&previous-version=2.9.9.1&new-version=2.9.10.1)](https://help.github.com/articles/configuring-automated-security-fixes) Dependabot will resolve any conflicts with this PR as long as you don't...

dependencies

The `Collections/Compund tasks` test code gives an error with Kotlin 1.3. The error message is > Error:(10, 62) Assigning single elements to varargs in named form is forbidden The offending...

See https://play.kotlinlang.org/koans/Collections/Compound%20tasks/Task.kt Should be a fix for https://github.com/Kotlin/kotlin-koans-edu/issues/13

For this step: https://github.com/Kotlin/kotlin-koans-edu/tree/master/Kotlin%20Koans/Introduction/Java%20to%20Kotlin%20conversion Copying the Java Class code: public class JavaCode { public String toJSON(Collection collection) { ....... } } Produces Kotlin code: class JavaCode { fun toJSON(collection:Collection):String {...

e: E:\WorkSpace\Berui\Kotlin Koans\Builders\Html builders\src\Task.kt: (2, 12): Unresolved reference: html e: E:\WorkSpace\Berui\Kotlin Koans\Builders\Html builders\src\Task.kt: (3, 9): Unresolved reference: table e: E:\WorkSpace\Berui\Kotlin Koans\Builders\Html builders\src\Task.kt: (4, 13): Unresolved reference: tr e: E:\WorkSpace\Berui\Kotlin Koans\Builders\Html...

This comma clarifies that `make` is in the imperative case.

Doesn't compile in 1.3 because varargs (when used with named params) needs a collection.

After struggling to figure out the solution, I copied the [Solution.kt](https://github.com/Kotlin/kotlin-koans-edu/blob/master/Kotlin%20Koans/Conventions/For%20loop/Solution.kt) into my Test.kt, leading to the unresolved variable shown below. Assigning that variable to a local variable fixed it,...

The following solution shouldn't be accepted but it. This solution shouldn't be accepted because it doesn't color the content cells but only the header. ```kotlin fun renderProductTable(): String { return...

Set.intersect(...) parameter is an Iterable rather than a Set. Link to koan: https://try.kotlinlang.org/#/Kotlin%20Koans/Collections/Fold/Task.kt