Create a function that determines whether it is possible to build a palindrome from the characters in a string.
possible_palindrome("acabbaa") ➞ True
# Can make the following palindrome: "aabcbaa"
possible_palindrome("aacbdbc") ➞ True
# Can make the following palindrome: "abcdcba"
possible_palindrome("aacbdb") ➞ False
possible_palindrome("abacbb") ➞ False
N/A