Given a string s, return true if s is a good string, or false otherwise.
A string s is good if all the characters that appear in s have the same number of occurrences (i.e., the same frequency).
1 <= s.length <= 1000s consists of lowercase English letters.s = "abacbc"trues = "aaabb"false