Is there a benefit to memoizing the point addition of a specific game's score to avoid splitting, and comparing values, when we have already done so for the duplicate score?
I solved as shown below:
const calculateAmountOfPoints = games => { const seenScores = {}; let total = 0; games.forEach(game => { if (seenScores[game]) { total += seenScores[game]; } else { const [x, y] = game.split(":"); let thisScore = 0; if (x > y) thisScore = 3; if (x === y) thisScore = 1; total += thisScore; seenScores[game] = thisScore; } }); return total; };
Hey Sam,
great question, thanks!
If the performance of your application is a bottleneck, you could get some benefits through the memoizing.
There are probably already some optimizations going on under the hood of the JS engine, so I don't know about the magnitude of this manual memoizing.
If you know more about this topic or this specific case, please let us know.
Greetings Michael
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Is there a benefit to memoizing the point addition of a specific game's score to avoid splitting, and comparing values, when we have already done so for the duplicate score?
I solved as shown below:
Hey Sam,
great question, thanks!
If the performance of your application is a bottleneck, you could get some benefits through the memoizing.
There are probably already some optimizations going on under the hood of the JS engine, so I don't know about the magnitude of this manual memoizing.
If you know more about this topic or this specific case, please let us know.
Greetings
Michael