Skip to content

Instantly share code, notes, and snippets.

@sortega
Created December 21, 2015 23:10
Show Gist options
  • Save sortega/ca3257398445c029f14d to your computer and use it in GitHub Desktop.
Save sortega/ca3257398445c029f14d to your computer and use it in GitHub Desktop.
scala> def yearlyImprove(dailyImprove: Double): Double =
| Seq.fill(365)(1 + dailyImprove).product - 1
yearlyImprove: (dailyImprove: Double)Double
scala> yearlyImprove(0.001)
res0: Double = 0.44025131342952095
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment