Skip to content

Instantly share code, notes, and snippets.

@LukasGasior1
Created July 27, 2015 13:43
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 LukasGasior1/cf586835a7b05e58c216 to your computer and use it in GitHub Desktop.
Save LukasGasior1/cf586835a7b05e58c216 to your computer and use it in GitHub Desktop.
case class Stats(rollsCounts: Map[Int, Int]) {
def incRollsCount(rolledNumber: Int) = {
val currentCount = rollsCounts.getOrElse(rolledNumber, 0)
copy(rollsCounts = rollsCounts + (rolledNumber -> (currentCount + 1)))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment