High Score Board - Leftover of a function - To be fixed

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!

It used to be part of the exercise but no more. If you reset the exercise after updating, it is probably gone.

It required knowledge you did not yet have when teaching that exercise.

2 Likes