Skip to content

Instantly share code, notes, and snippets.

@crakaC
Created October 13, 2020 03:42
Show Gist options
  • Save crakaC/ec790e15d470862fd72208d754f8f39f to your computer and use it in GitHub Desktop.
Save crakaC/ec790e15d470862fd72208d754f8f39f to your computer and use it in GitHub Desktop.
KotlinでAtCoderやるときの雛形
fun main(){
}
fun readInt() = readLine()!!.toInt()
fun readInts() = readLine()!!.split(" ").map(String::toInt)
fun <T>printAll(a: Collection<T>) = println(a.joinToString("\n"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment