Skip to content

Instantly share code, notes, and snippets.

@snowmerak
Created January 4, 2021 14:45
Show Gist options
  • Save snowmerak/12bd30bcac95b87591559c884fbb2f03 to your computer and use it in GitHub Desktop.
Save snowmerak/12bd30bcac95b87591559c884fbb2f03 to your computer and use it in GitHub Desktop.
fun main() {
val (_, c) = readLine()!!.split(" ").map { it.toInt() }
val rs = readLine()!!.split(" ").map { it.toInt() }.filter { it < c }.toList()
println(rs.joinToString(" "))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment