Spaces:
Runtime error
Runtime error
update hints module
Browse files- scripts/quiz/hints.py +6 -23
scripts/quiz/hints.py
CHANGED
@@ -1,32 +1,15 @@
|
|
1 |
import random
|
2 |
|
3 |
|
4 |
-
def generate_hint(
|
5 |
-
ord_num = question_nums[1] # ordinal number
|
6 |
-
equation = right_answer - 2 * ord_num - 1
|
7 |
-
min_num = equation if equation > 0 else 0
|
8 |
-
seq_before = " ".join(
|
9 |
-
[str(num) for num in range(right_answer - ord_num, min_num, -ord_num)][::-1]
|
10 |
-
) # sequence before right answer
|
11 |
-
seq_after = " ".join(
|
12 |
-
[str(num) for num in range(right_answer + ord_num, right_answer + 2 * ord_num + 1, ord_num)]
|
13 |
-
) # sequence after right answer
|
14 |
hints = [
|
15 |
-
f"What number
|
16 |
-
f"What number is {ord_num} in the account after {right_answer - ord_num}?",
|
17 |
-
f"What number is {ord_num} in the account before {right_answer + ord_num}?",
|
18 |
-
f"What number is greater than {right_answer - 1} and less than {right_answer + 1}?"
|
19 |
]
|
20 |
-
|
21 |
-
hints_used += 1
|
22 |
|
23 |
output = {
|
24 |
-
"text":
|
25 |
-
|
26 |
-
"
|
27 |
-
'number_correct': right_answers,
|
28 |
-
'number_incorrect': wrong_answers,
|
29 |
-
'level': level,
|
30 |
-
"hints_used": hints_used
|
31 |
}
|
32 |
return output
|
|
|
1 |
import random
|
2 |
|
3 |
|
4 |
+
def generate_hint(start, step, difficulty):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
hints = [
|
6 |
+
f"What number is greater than {start} and less than {start + 2 * step}?"
|
|
|
|
|
|
|
7 |
]
|
8 |
+
hint = random.choice(hints)
|
|
|
9 |
|
10 |
output = {
|
11 |
+
"text": hint,
|
12 |
+
'difficulty': difficulty,
|
13 |
+
"question_numbers": [start, step, start + step]
|
|
|
|
|
|
|
|
|
14 |
}
|
15 |
return output
|