sviddo commited on
Commit
6553c50
·
1 Parent(s): 13381fa

update hints module

Browse files
Files changed (1) hide show
  1. scripts/quiz/hints.py +6 -23
scripts/quiz/hints.py CHANGED
@@ -1,32 +1,15 @@
1
  import random
2
 
3
 
4
- def generate_hint(question_nums, right_answer, right_answers, wrong_answers, level, hints_used):
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 will fill the gap in a sequence {seq_before} ... {seq_after}?",
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
- rand_hint = random.choice(hints)
21
- hints_used += 1
22
 
23
  output = {
24
- "text": rand_hint,
25
- "question_numbers": question_nums,
26
- "right_answer": right_answer,
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