Guessing Rules - Easy #4
Return game hints for low/high/correct decisions. (Python - Easy)
Goal: Finish a direct starter task. | Language: PYTHON
Typing progress
0%
Write directly over the faded code template until you reach 100%.
# Guessing Rules (Python)
# Objective: Finish a direct starter task.
attempts = [11, 15, 19]
total = sum(attempts)
print("guess total:", total)
# Extended practice block for easy level.
dataset_1 = [8, 10, 12]
def checkpoint_guess_1(values):
normalized = [value - min(values) for value in values]Time: 0s
Accuracy: 0%
Keys: 0
Typing errors: 0
Symbol errors: 0
Complete typing to 100%, then run the program.