Skip to content

Instantly share code, notes, and snippets.

@theerasan
Created February 2, 2018 14:03
Show Gist options
  • Save theerasan/b8d67c1490dbc60de8457258469f74ed to your computer and use it in GitHub Desktop.
Save theerasan/b8d67c1490dbc60de8457258469f74ed to your computer and use it in GitHub Desktop.
fun main(args: Array<String>) {
println(13.isPrimeNumber())
}
private fun Int.isPrimeNumber(): Boolean {
if (this < 1) return false
var count = 0
(1..this).forEach {
if (this%it == 0) count++
}
return count == 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment