From 97b3dc26fb1ebd8a8b005ae2213f12d4e22981a1 Mon Sep 17 00:00:00 2001 From: Jonas Weinz Date: Sun, 2 Apr 2023 18:19:30 +0200 Subject: [PATCH] crossword generator difficulty adjusted --- server/crossword_generator.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/crossword_generator.py b/server/crossword_generator.py index d5a451a..3a89560 100644 --- a/server/crossword_generator.py +++ b/server/crossword_generator.py @@ -13,13 +13,13 @@ def get_difficulty_threshold(lang: str, difficulty: int): get_difficulty_threshold.thresholds = { 'de': { - 0: 3, - 1: 2, + 0: 5, + 1: 3, 2: 1 }, 'en': { 0: 5, - 1: 2, + 1: 3, 2: 1 }, 'hp': {