The Bonus Round
A medium Python interview practice problem on DataDriven. Write and execute real python code with instant grading.
- Domain
- Python
- Difficulty
- medium
- Seniority
- L3
Problem
Given a list of integer dice rolls, compute the total score. Each roll contributes its face value. Additionally, whenever two consecutive rolls show the same value v, add a bonus of 2*v (on top of counting both rolls normally). Return the final integer score.
Summary
Consecutive matching dice rolls trigger a special scoring rule.
Practice This Problem
Solve this Python problem with real code execution. DataDriven runs your Python code in a real environment and grades it automatically.