
Given a list of integer values. Write a python program to check whether it contains same number in adjacent position. Display the count of such adjacent occurrences
Sample Input | Expected Output |
[1,1,5,100,-20,-20,6,0,0] | 3 |
[10,20,30,40,30,20] | 0 |
[1,2,2,3,4,4,4,10] | 3 |
SOLUTION:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Write a python program to check whether it contains same number in adjacent position. | |
# Display the count of such adjacent occurrences | |
def get_count(num_list): | |
count=0 | |
# Write your logic here | |
for i in range (0,len(num_list)-1): | |
if (num_list[i]==num_list[i+1]): | |
count=count+1 | |
else: | |
continue | |
return count | |
num_list=[1,1,5,100,-20,-20,6,0,0] | |
print(get_count(num_list)) |
0 Comments