An open API service indexing awesome lists of open source software.

https://github.com/umair13adil/kotlinalgorithms

Collection of solutions for algorithm problems from Codility and other sources in Kotlin.
https://github.com/umair13adil/kotlinalgorithms

algorithm-challenges algorithms android codility codility-solutions kotlin training

Last synced: about 1 month ago
JSON representation

Collection of solutions for algorithm problems from Codility and other sources in Kotlin.

Awesome Lists containing this project

README

          

# Android Kotlin Algorithms Solutions
Efficient solutions of algorithm solutions from Codility & different sources written in Kotlin.

## List of Problems:

- [Longest binary gap in an array](https://github.com/umair13adil/KotlinAlgorithms/blob/master/app/src/main/java/com/umairadil/androidalgorithms/algos/BinaryGap.kt)
- [Reverse a string](https://github.com/umair13adil/KotlinAlgorithms/blob/master/app/src/main/java/com/umairadil/androidalgorithms/algos/ReverseString.kt)
- [Minimum length substring with exactly K distinct characters](https://github.com/umair13adil/KotlinAlgorithms/blob/master/app/src/main/java/com/umairadil/androidalgorithms/algos/MinLengthSubStringKDistinct.kt)
- [Time-Complexity-PermMissingElem](https://github.com/umair13adil/KotlinAlgorithms/blob/master/app/src/main/java/com/umairadil/androidalgorithms/algos/MissingElement.kt)