Create a function that takes a number as an argument and returns True if the number is a valid credit card number, False otherwise.
Credit card numbers must be between 14-19 digits in length, and pass the Luhn test, described below:
validate_card(1234567890123456) ➞ False
# Step 1: check digit = 6, num = 123456789012345
# Step 2: num reversed = 543210987654321
# Step 3: digit list after selective doubling: [1, 4, 6, 2, 2, 0, 9, 8, 5, 6, 1, 4, 6, 2, 2]
# Step 4: sum = 58
# Step 5: 10 - 8 = 2 (not equal to 6) ➞ False
validate_card(1234567890123452) ➞ True
# Same as above, but check digit checks out.
N/A