Skip to content

Instantly share code, notes, and snippets.

@siosio
Created November 12, 2014 05:59
Show Gist options
  • Save siosio/a6bd7a37af2d4cc7eb8a to your computer and use it in GitHub Desktop.
Save siosio/a6bd7a37af2d4cc7eb8a to your computer and use it in GitHub Desktop.
あれ
fun runs(a : IntArray) : Int {
return a.zip(a.drop(1)).count { it.first != it.second } + 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment