I have to write a program with a Luhn check that is a different variation than the default. Double all even place digits and add them together If the result of doubling, such as 2*9=18, is 2 digits, then use the sum of the single digits, such as 1+8=9 Add all odd place digits together The credit card number is valid if the even + the odd sum is divisible by 10.
The worst part about this is that you cannot change the inputted value into anything else; it must remain an integer.