1 Star 5 Fork 1

编程语言算法集 / Kotlin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 443 Bytes
一键复制 编辑 原始数据 按行查看 历史
varunu28 提交于 2019-03-24 08:55 . Created the project. Added linear search
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.3.21'
}
group 'main.kotlin.com'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
testCompile group: 'junit', name: 'junit', version: '4.12'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
Kotlin
1
https://gitee.com/TheAlgorithms/Kotlin.git
git@gitee.com:TheAlgorithms/Kotlin.git
TheAlgorithms
Kotlin
Kotlin
master

搜索帮助