sunnydl / GamePerformanceTracker

Team project for CSE 115A in Fall 2021, UCSC
3 stars 0 forks source link

KDA computation function #61

Closed sunnydl closed 2 years ago

sunnydl commented 3 years ago

In matchService

Implement following function. It should follow the concepts defined in google doc. You can modify it if you found any problem while doing the computation.

const computeKda = (matchList, puuid) => {
   const kdaScoreList = []
   // compute it with data given in the matchList
   return kdaScoreList;
}