Skip to content

Instantly share code, notes, and snippets.

@mr5z
Created October 22, 2020 11:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mr5z/fed1dcffad0e57db77bfe54dfc91e18a to your computer and use it in GitHub Desktop.
Save mr5z/fed1dcffad0e57db77bfe54dfc91e18a to your computer and use it in GitHub Desktop.
ugly kotlin
items.forEach { item ->
for(map in mapList) {
if (map.id == item.mapId) {
map.score = item.score
break
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment