Sha256: 5d983e8fa5e260f25703b752e9907d0e230f243aba71df48407c4fc64590c2e9

Contents?: true

Size: 1.63 KB

Versions: 109

Compression:

Stored size: 1.63 KB

Contents

The [ISBN-10 verification process](https://en.wikipedia.org/wiki/International_Standard_Book_Number) is used to validate book identification
numbers. These normally contain dashes and look like: `3-598-21508-8`

## ISBN

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:

```
(x1 * 10 + x2 * 9 + x3 * 8 + x4 * 7 + x5 * 6 + x6 * 5 + x7 * 4 + x8 * 3 + x9 * 2 + x10 * 1) mod 11 == 0
```

If the result is 0, then it is a valid ISBN-10, otherwise it is invalid.

## Example

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.

## Task

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.


## Caveats

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.

## Bonus tasks

* Generate a valid ISBN-13 from the input ISBN-10 (and maybe verify it again with a derived verifier).

* Generate valid ISBN, maybe even from a given starting ISBN.

Version data entries

109 entries across 109 versions & 1 rubygems

Version Path
trackler-2.2.1.180 problem-specifications/exercises/isbn-verifier/description.md
trackler-2.2.1.179 problem-specifications/exercises/isbn-verifier/description.md
trackler-2.2.1.178 problem-specifications/exercises/isbn-verifier/description.md
trackler-2.2.1.177 problem-specifications/exercises/isbn-verifier/description.md
trackler-2.2.1.176 problem-specifications/exercises/isbn-verifier/description.md
trackler-2.2.1.175 problem-specifications/exercises/isbn-verifier/description.md
trackler-2.2.1.174 problem-specifications/exercises/isbn-verifier/description.md
trackler-2.2.1.173 problem-specifications/exercises/isbn-verifier/description.md
trackler-2.2.1.172 problem-specifications/exercises/isbn-verifier/description.md
trackler-2.2.1.171 problem-specifications/exercises/isbn-verifier/description.md
trackler-2.2.1.170 problem-specifications/exercises/isbn-verifier/description.md
trackler-2.2.1.169 problem-specifications/exercises/isbn-verifier/description.md
trackler-2.2.1.167 problem-specifications/exercises/isbn-verifier/description.md
trackler-2.2.1.166 problem-specifications/exercises/isbn-verifier/description.md
trackler-2.2.1.165 problem-specifications/exercises/isbn-verifier/description.md
trackler-2.2.1.164 problem-specifications/exercises/isbn-verifier/description.md
trackler-2.2.1.163 problem-specifications/exercises/isbn-verifier/description.md
trackler-2.2.1.162 problem-specifications/exercises/isbn-verifier/description.md
trackler-2.2.1.161 problem-specifications/exercises/isbn-verifier/description.md
trackler-2.2.1.160 problem-specifications/exercises/isbn-verifier/description.md