Skip to content

Instantly share code, notes, and snippets.

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