At the Global Verification Authority, you've just been entrusted with a critical assignment. Across the city, from online purchases to secure logins, countless operations rely on the accuracy of numerical identifiers like credit card numbers, bank account numbers, transaction codes, and tracking IDs. The Luhn algorithm is a simple checksum formula used to ensure these numbers are valid and error-free.
A batch of identifiers has just arrived on your desk. All of them must pass the Luhn test to ensure they're legitimate. If any fail, they'll be flagged as invalid, preventing errors or fraud, such as incorrect transactions or unauthorized access.
Can you ensure this is done right? The integrity of many services depends on you.
Determine whether a credit card number is valid according to the Luhn formula.
The number will be provided as a string.
Strings of length 1 or less are not valid. Spaces are allowed in the input, but they should be stripped before checking. All other non-digit characters are disallowed.
4539 3195 0343 6467
The first step of the Luhn algorithm is to double every second digit, starting from the right. We will be doubling
4539 3195 0343 6467
β β β β β β β β (double these)
If doubling the number results in a number greater than 9 then subtract 9 from the product. The results of our doubling:
8569 6195 0383 3437
Then sum all of the digits:
8+5+6+9+6+1+9+5+0+3+8+3+3+4+3+7 = 80
If the sum is evenly divisible by 10, then the number is valid. This number is valid!
8273 1232 7352 0569
Double the second digits, starting from the right
7253 2262 5312 0539
Sum the digits
7+2+5+3+2+2+6+2+5+3+1+2+0+5+3+9 = 57
57 is not evenly divisible by 10, so this number is not valid.
Register | Usage | Type | Description |
---|---|---|---|
$a0 |
input | address | null-terminated input string |
$v0 |
output | boolean | validity of input string (0 = false , 1 = true ) |
$t0-9 |
temporary | any | used for temporary storage |
Sign up to Exercism to learn and master MIPS Assembly with 57 exercises, and real human mentoring, all for free.
We explore 8 different versions of Luhn, starting with a very tidy Ruby implementation, exploring some imperative and functional approaches, and ending up with a SQLite version that took Erik and Jeremy some work to decipher!