https://github.com/sergeyklay/kotlin-trials
A playground for algorithms trials using Kotlin
https://github.com/sergeyklay/kotlin-trials
algorithms hacktoberfest kotlin playground trials
Last synced: 7 months ago
JSON representation
A playground for algorithms trials using Kotlin
- Host: GitHub
- URL: https://github.com/sergeyklay/kotlin-trials
- Owner: sergeyklay
- License: unlicense
- Created: 2020-06-02T19:06:10.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-11T10:45:31.000Z (over 5 years ago)
- Last Synced: 2025-02-03T06:37:54.848Z (8 months ago)
- Topics: algorithms, hacktoberfest, kotlin, playground, trials
- Language: Kotlin
- Homepage:
- Size: 143 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Trials
[![Build Status][actions-badge]][actions link]
My primary playground for doing algorithmic trials using Kotlin. Hence, the name.
## Contents
- **Search**
- [`BinarySearch`][bin-search-impl]
- [`JumpSearch`][jump-search-impl]
- [`LinearSearch`][lin-search-impl]
- **Matrix**
- [`IntMatrix`][int-matrix-impl]## Run benchmarks
```shell script
$ ./gradlew --no-daemon clean jmh
```## Run tests
```shell script
$ ./gradlew check
```## License
This is free and unencumbered software released into the public domain.
For more see [LICENSE](./LICENSE) file.[actions link]: https://github.com/sergeyklay/kotlin-trials/actions
[actions-badge]: https://github.com/sergeyklay/kotlin-trials/workflows/build/badge.svg
[algo-book]: https://www.amazon.com/Introduction-Algorithms-3rd-MIT-Press/dp/0262033844
[bin-search-impl]: https://github.com/sergeyklay/kotlin-trials/blob/master/src/main/kotlin/org/trials/search/BinarySearch.kt
[jump-search-impl]: https://github.com/sergeyklay/kotlin-trials/blob/master/src/main/kotlin/org/trials/search/JumpSearch.kt
[lin-search-impl]: https://github.com/sergeyklay/kotlin-trials/blob/master/src/main/kotlin/org/trials/search/LinearSearch.kt
[int-matrix-impl]: https://github.com/sergeyklay/kotlin-trials/blob/master/src/main/kotlin/org/trials/IntMatrix.kt