The ISBN-10 verification process is used to validate book identification numbers.
These normally contain dashes and look like: 3-598-21508-8
The ISBN-10 format is 9 digits (0 to 9) plus one check character (either a digit or an X only). In the case the check character is an X, this represents the value '10'. These may be communicated with or without hyphens, and can be checked for their validity by the following formula:
(dβ * 10 + dβ * 9 + dβ * 8 + dβ * 7 + dβ
* 6 + dβ * 5 + dβ * 4 + dβ * 3 + dβ * 2 + dββ * 1) mod 11 == 0
If the result is 0, then it is a valid ISBN-10, otherwise it is invalid.
Let's take the ISBN-10 3-598-21508-8
.
We plug it in to the formula, and get:
(3 * 10 + 5 * 9 + 9 * 8 + 8 * 7 + 2 * 6 + 1 * 5 + 5 * 4 + 0 * 3 + 8 * 2 + 8 * 1) mod 11 == 0
Since the result is 0, this proves that our ISBN is valid.
Given a string the program should check if the provided string is a valid ISBN-10. Putting this into place requires some thinking about preprocessing/parsing of the string prior to calculating the check digit for the ISBN.
The program should be able to verify ISBN-10 both with and without separating dashes.
Converting from strings to numbers can be tricky in certain languages.
Now, it's even trickier since the check digit of an ISBN-10 may be 'X' (representing '10').
For instance 3-598-21507-X
is a valid ISBN-10.
If you attempt these tasks please write your own tests for them in your solution file!
Define a string macro so that isbn"3-598-21507-X" == ISBN("3-598-21507-X")
.
Let the constructor accept ISBN-13s as well. The same ISBN should compare equal regardless of format: ISBN("1-234-56789-X") == ISBN("978-1-234-56789-7")
.
Define a function or iterator to generate a valid ISBN, maybe even from a given starting ISBN.
Can you store the ISBN as an integer rather than a string and would that ever be a good idea? If you did, could you still print the ISBN (including check-digit) as a string?
Sign up to Exercism to learn and master Julia with 82 exercises, and real human mentoring, all for free.