Skip to content

Instantly share code, notes, and snippets.

@kmdupr33
Created September 5, 2019 12:39
Show Gist options
  • Save kmdupr33/f3d79d494d6a64eb1e02edd5435fa1d4 to your computer and use it in GitHub Desktop.
Save kmdupr33/f3d79d494d6a64eb1e02edd5435fa1d4 to your computer and use it in GitHub Desktop.
fun predictVideoGameSales(
metaCriticScore: Int,
learningParameters: Pair<Double, Double>
) {
val (m, b) = learningParameters
return metaCriticScore * m + b
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment