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;
}
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.