From 00148122b663d3f64982bf28003829685656a212 Mon Sep 17 00:00:00 2001 From: Derk-Jan Karrenbeld Date: Sun, 29 Jun 2025 15:08:55 +0200 Subject: [PATCH] Remove unused function from stub high-score-board.js --- exercises/concept/high-score-board/high-score-board.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/exercises/concept/high-score-board/high-score-board.js b/exercises/concept/high-score-board/high-score-board.js index d9ebe3b8b7..1e365bd655 100644 --- a/exercises/concept/high-score-board/high-score-board.js +++ b/exercises/concept/high-score-board/high-score-board.js @@ -54,13 +54,3 @@ export function updateScore(scoreBoard, player, points) { export function applyMondayBonus(scoreBoard) { throw new Error('Please implement the applyMondayBonus 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'); -}