Given two strings, create a function that returns the total number of unique characters from the combined string.
countUnique("apple", "play") ➞ 5
// "appleplay" has 5 unique characters:
// "a", "e", "l", "p", "y"
countUnique("sore", "zebra") ➞ 7
countUnique("a", "soup") ➞ 5