sviddo's picture
update hints module
3740281
raw
history blame
344 Bytes
import random
def generate_hint(start, step, difficulty):
hints = [
f"What number is greater than {start} and less than {start + 2 * step}?"
]
hint = random.choice(hints)
output = {
"text": hint,
'difficulty': difficulty,
"question_numbers": [start, step, start + step]
}
return output