Viral Content Balancer
The TikTok engineering team is developing a new feature for analyzing viral trends by studying content sequences represented by a string of content of length n consisting of lowercase letters. The team has discovered that to make a video go viral, each character (character) in the content sequence should have an equal frequency.
In one operation, a character can be appended or removed from the content string. Your task is to find the minimum number of operations required to balance the frequency of all characters in the content sequence.
Complete the function balanceContent in the editor.
balanceContent has the following parameter:
string content: the original content sequence.
Returns
int: the minimum number of operations to balance the content sequence.