From 5175d59399abf9c38302c724dda2b353c184fccb Mon Sep 17 00:00:00 2001 From: Brock Chelle Date: Wed, 4 Oct 2023 19:13:18 -0600 Subject: [PATCH] Increment potential upset count to 4 --- src/picks/bestWeeklyPicks.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/picks/bestWeeklyPicks.ts b/src/picks/bestWeeklyPicks.ts index 9a4c612..ab69ea9 100644 --- a/src/picks/bestWeeklyPicks.ts +++ b/src/picks/bestWeeklyPicks.ts @@ -24,7 +24,7 @@ export const getBestWeeklyPicks = (games: GameData[]): BestProb => { let totalIterations = 0 const combinations = [] - for (let i = 1; i <= 3; i++) { + for (let i = 1; i <= 4; i++) { const kCombinations = chooseK(gameIndexes, i) totalIterations += kCombinations.length * Math.pow(2, i) combinations.push(...kCombinations)