Write a regular expression that checks if a string is a valid initial. Valid initials either look like (ex. for Chandler Muriel Bing):
Rules for a valid initial:
"C. B." ➞ true
" C. B." ➞ true
# Leading and trailing spaces are OK!
"C. B. k." ➞ false
# One of the initials is lower cased
"C B" ➞ false
# Missing a dot to immediately follow. This challenge is designed to use RegEx only.