Given a string of length N, made up of only uppercase characters 'R' and 'G', where 'R' stands for Red and 'G' stands for Green. Find out the minimum number of characters you need to change to make the whole string of the same colour.
Input
The input will be a single line containing a string.
Output
The output should be single line containing the integer representing the minimum number of characters you need to change to make the whole string of the same colour.
Explanation
For example, if string is "GGGGGGR" . We need to change only the last character to 'G' to make the string same-coloured.then output is 1.
s = str(input("Enter the string: "))
count = 0
s1 = s.count('R')
s2 = s.count('G')
if s1>s2:
count = s2
else:
count = s1
print(count)
Comments
Leave a comment