I was doing the High Score Board exercise when I found that the last function
/**
* Normalizes a score with the provided normalization function.
*
* @param {Params} params the parameters for performing the normalization
* @returns {number} normalized score
*/
export function normalizeScore(params) {
throw new Error('Please implement the normalizeScore function');
}
was not covered either in the exercise description and not even in the test cases. It looks it is a a leftover from previous exercises.
Can somebody like @SleeplessByte have a look at that? It has probably to be fixed.
Let me know if you need anything!