Skip to content

Instantly share code, notes, and snippets.

@hhariri
Created November 9, 2013 09:12
Show Gist options
  • Save hhariri/7383501 to your computer and use it in GitHub Desktop.
Save hhariri/7383501 to your computer and use it in GitHub Desktop.
fun topUSandUK_hits_years_v2(albums: List<Album>): List<Int> {
return albums.filter {
(it.chartUK == 1 && it.chartUS == 1)
}.map {
it.year
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment