You will be given a string that is made up of some repeated pattern of characters. However, one of the characters in the string will be missing and replaced by an underscore. Write a function that returns the missing character.
complete_pattern("ABCABCA_CAB") ➞ "B"
complete_pattern("_ABAABAABA") ➞ "A"
complete_pattern("X+X*X+X*X+X_") ➞ "*"