Skip to content

Instantly share code, notes, and snippets.

@hhariri
Created November 9, 2013 08:22
Show Gist options
  • Save hhariri/7383062 to your computer and use it in GitHub Desktop.
Save hhariri/7383062 to your computer and use it in GitHub Desktop.
fun topUSandUK_v2(albums: List<Album>): List<Album> {
val hits = arrayListOf<Album>()
for (album in albums) {
if (album.chartUK == 1 && album.chartUS == 1) {
hits.add(album)
}
}
return hits;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment