Skip to content

Instantly share code, notes, and snippets.

@Albertbol
Created March 7, 2021 18:45
Show Gist options
  • Save Albertbol/884669f68adaa89bf60a882120bb1507 to your computer and use it in GitHub Desktop.
Save Albertbol/884669f68adaa89bf60a882120bb1507 to your computer and use it in GitHub Desktop.
normalization() {
let powSum = 0
population.forEach((p, i) => {
powSum += population[i].powRate
})
population.forEach((p, i) => {
population[i].powRate = p.powRate / powSum
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment