s of repeated faces. Note the following examples: Suppose the following numbers were provided in the sequence of dice rolls: 4 5 4 2 1 4 4 1 1 3 5 1 2 3 1 In this case, your program must output the number two (number of series of repeated faces). Let's look at another example: 3 5 4 3 3 1 3 1 1 1 1 2 5 1 6 Again your program should output the number two, corresponding to the series of faces three and the series of faces one. Note that the size of the series is not important, the output of your program is just the number of series registered.
About initial
Write a Python program that reads a series of throws of a die, stores them in a list, and count the number of occurrences of series of repeated faces. Note the following examples:
Suppose the following numbers were provided in the sequence of dice rolls:
4 5 4 2 1 4 4 1 1 3 5 1 2 3 1
In this case, your program must output the number two (number of series of repeated faces).
Let's look at another example:
3 5 4 3 3 1 3 1 1 1 1 2 5 1 6
Again your program should output the number two, corresponding to the series of faces three and the series of faces one. Note that the size of the series is not important, the output of your program is just the number of series registered.
Step by step
Solved in 4 steps with 3 images