Spaces:
Runtime error
Runtime error
File size: 344 Bytes
fe81191 c591793 3740281 fe81191 3740281 fe81191 3740281 fe81191 c591793 3740281 fe81191 c591793 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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 |