Create a function that takes a list of card numbers and checks if the sum of their value exceeds 21. If the sum exceeds 21, return True and if the sum is under or equal to 21, return False. Values of the cards are as follows:
over_twenty_one([2, 8, "J"]) ➞ False
over_twenty_one(["A", "J", "K"]) ➞ False
over_twenty_one([5, 5, 3, 9]) ➞ True
over_twenty_one([2, 6, 4, 4, 5]) ➞ False
over_twenty_one(["J", "Q", "K"]) ➞ True
There will be a maximum of one ace in each hand.