From 8d25208c83d1764b9006f27449d1b665845263b2 Mon Sep 17 00:00:00 2001 From: paulusgaming Date: Sun, 4 Dec 2022 18:39:25 +0100 Subject: [PATCH] Removed top_n from algorithm call. --- script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.js b/script.js index 12e91cf..a6e2848 100644 --- a/script.js +++ b/script.js @@ -15,7 +15,7 @@ window.onload = function() { */ function calculateAnswer(event) { console.info("Calculating answer for input..."); - let answer = algorithm(event.target.value, TOP_N); + let answer = algorithm(event.target.value); document.getElementById(ANSWER).innerText = answer; }