You are given a list level_enemies where each element represents the number of enemies in a video‑game level. The player earns 10 points per enemy. The game stops as soon as a level contains 0 enemies (the player quits). Write a function that returns the total points earned. If the list is empty, return 0.
Examples
calculate_total_score([3, 4, 2]) # (3+4+2)*10 = 90
calculate_total_score([5, 0, 7]) # stops at 0, only 5*10 = 50
calculate_total_score([]) # 0