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.
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