[Solved] Alice and Bob are playing a game of Zombie Dice as described on the last page of this assignment. Both Alice and Bob are using the same strategy
Alice and Bob are playing a game of Zombie Dice as described on the last page of this assignment. Both Alice and Bob are using the same strategy. They keep rolling the dice until they have three brains. Once they have three brains, they end their turn and score the number of brains that they got. Given a sequence of dice rolls in a game of Zombie Dice, we want to figure out who (Alice or Bob) would win, assuming that both follow the above strategy. Write the body of the program called Problem2 that reads in a sequence of dice rolls from a game of Zombie Dice played by Alice and Bob, and determines the score of the game.
use python
Expert Answer
OR