I have a series of 5-digit number series with 4 numbers and and 5th digit is a Alphabetic check digit.
I have a sample of numbers. (about 58 samples)
Check digit is generated by
( (Digit 1 * Value 1) + (Digit 2 * Value 2) + (Digit 3 * Value 3) + (Digit 4 * Value 4) ) Mod 11
In order to find the 4 Values for this algorithm from the sample of numbers, What method to follow to get the values ?
I'm not interested in the values itself.