Skip to content

Commit 2050602

Browse files
author
Katrina Owen
committed
Regenerate exercise READMEs to include upstream formatting tweaks
1 parent a937192 commit 2050602

8 files changed

Lines changed: 60 additions & 36 deletions

File tree

exercises/custom-set/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Custom-Set
1+
# Custom Set
22

33
Create a custom set type.
44

exercises/dot-dsl/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Dot Dsl
1+
# DOT DSL
22

33
Write a Domain Specific Language similar to the Graphviz dot language.
44

exercises/isbn-verifier/README.md

Lines changed: 48 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,72 @@
1-
# Isbn Verifier
1+
# ISBN Verifier
22

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

5-
## Functionality
6+
## ISBN
7+
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:
9+
10+
```
11+
(x1 * 10 + x2 * 9 + x3 * 8 + x4 * 7 + x5 * 6 + x6 * 5 + x7 * 4 + x8 * 3 + x9 * 2 + x10 * 1) mod 11 == 0
12+
```
13+
14+
If the result is 0, then it is a valid ISBN-10, otherwise it is invalid.
15+
16+
## Example
17+
18+
Let's take the ISBN-10 `3-598-21508-8`. We plug it in to the formula, and get:
19+
```
20+
(3 * 10 + 5 * 9 + 9 * 8 + 8 * 7 + 2 * 6 + 1 * 5 + 5 * 4 + 0 * 3 + 8 * 2 + 8 * 1) mod 11 == 0
21+
```
22+
23+
Since the result is 0, this proves that our ISBN is valid.
24+
25+
## Task
626

7-
Given an unkown string the program should check if the provided string is a valid ISBN-10.
27+
Given a string the program should check if the provided string is a valid ISBN-10.
828
Putting this into place requires some thinking about preprocessing/parsing of the string prior to calculating the check digit for the ISBN.
929

10-
The program should allow for ISBN-10 without the separating dashes to be verified as well.
30+
The program should be able to verify ISBN-10 both with and without separating dashes.
1131

12-
## ISBN
1332

14-
Let's take a random ISBN-10 number, say `3-598-21508-8` for this.
15-
The first digit block indicates the group where the ISBN belongs. Groups can consist of shared languages, geographic regions or countries. The leading '3' signals this ISBN is from a german speaking country.
16-
The following number block is to identify the publisher. Since this is a three digit publisher number there is a 5 digit title number for this book.
17-
The last digit in the ISBN is the check digit which is used to detect read errors.
33+
## Caveats
34+
35+
Converting from strings to numbers can be tricky in certain languages.
36+
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.
37+
38+
## Bonus tasks
39+
40+
* Generate a valid ISBN-13 from the input ISBN-10 (and maybe verify it again with a derived verifier).
1841

19-
The first 9 digits in the ISBN have to be between 0 and 9.
20-
The check digit can additionally be an 'X' to allow 10 to be a valid check digit as well.
42+
* Generate valid ISBN, maybe even from a given starting ISBN.
43+
## Exception messages
2144

22-
A valid ISBN-10 is calculated with this formula `(x1 * 10 + x2 * 9 + x3 * 8 + x4 * 7 + x5 * 6 + x6 * 5 + x7 * 4 + x8 * 3 + x9 * 2 + x10 * 1) mod 11 == 0`
23-
So for our example ISBN this means:
24-
(3 * 10 + 5 * 9 + 9 * 8 + 8 * 7 + 2 * 6 + 1 * 5 + 5 * 4 + 0 * 3 + 8 * 2 + 8 * 1) mod 11 = 0
45+
Sometimes it is necessary to raise an exception. When you do this, you should include a meaningful error message to
46+
indicate what the source of the error is. This makes your code more readable and helps significantly with debugging. Not
47+
every exercise will require you to raise an exception, but for those that do, the tests will only pass if you include
48+
a message.
2549

26-
Which proves that the ISBN is valid.
50+
To raise a message with an exception, just write it as an argument to the exception type. For example, instead of
51+
`raise Exception`, you shold write:
2752

28-
### Submitting Exercises
53+
```python
54+
raise Exception("Meaningful message indicating the source of the error")
55+
```
56+
57+
58+
## Submitting Exercises
2959

3060
Note that, when trying to submit an exercise, make sure the solution is in the `exercism/python/<exerciseName>` directory.
3161

3262
For example, if you're submitting `bob.py` for the Bob exercise, the submit command would be something like `exercism submit <path_to_exercism_dir>/python/bob/bob.py`.
3363

34-
3564
For more detailed information about running tests, code style and linting,
3665
please see the [help page](http://exercism.io/languages/python).
3766

3867
## Source
3968

40-
Converting a string into a number and some basic processing utilizing a relatable real world example. [https://en.wikipedia.org/wiki/International_Standard_Book_Number#ISBN-10_check_digit_calculation](https://en.wikipedia.org/wiki/International_Standard_Book_Number)
69+
Converting a string into a number and some basic processing utilizing a relatable real world example. [https://en.wikipedia.org/wiki/International_Standard_Book_Number#ISBN-10_check_digit_calculation](https://en.wikipedia.org/wiki/International_Standard_Book_Number#ISBN-10_check_digit_calculation)
4170

4271
## Submitting Incomplete Solutions
4372
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

exercises/pov/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
Reparent a graph on a selected node.
44

5-
# Tree Reparenting
6-
75
This exercise is all about re-orientating a graph to see things from a different
86
point of view. For example family trees are usually presented from the
97
ancestor's perspective:

exercises/secret-handshake/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ please see the [help page](http://exercism.io/languages/python).
5454

5555
## Source
5656

57-
Bert, in Mary Poppins http://www.imdb.com/title/tt0058331/quotes/qt0437047
57+
Bert, in Mary Poppins [http://www.imdb.com/title/tt0058331/quotes/qt0437047](http://www.imdb.com/title/tt0058331/quotes/qt0437047)
5858

5959
## Submitting Incomplete Solutions
6060
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

exercises/simple-cipher/README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,13 @@ would get the same thing as the Caesar Cipher.
5858

5959
The weakest link in any cipher is the human being. Let's make your
6060
substitution cipher a little more fault tolerant by providing a source
61-
of randomness and ensuring that the key is not composed of numbers or
62-
capital letters.
61+
of randomness and ensuring that the key contains only lowercase letters.
6362

6463
If someone doesn't submit a key at all, generate a truly random key of
65-
at least 100 characters in length, accessible via Cipher#key (the #
66-
syntax means instance variable)
64+
at least 100 characters in length.
6765

68-
If the key submitted has capital letters or numbers, raise a
69-
ValueError with a message to that effect.
66+
If the key submitted is not composed only of lowercase letters, your
67+
solution should handle the error in a language-appropriate way.
7068

7169
## Extensions
7270

exercises/spiral-matrix/README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,22 @@
11
# Spiral Matrix
22

3-
43
Given the size, return a square matrix of numbers in spiral order.
54

65
The matrix should be filled with natural numbers, starting from 1
76
in the top-left corner, increasing in an inward, clockwise spiral order,
87
like these examples:
98

10-
##### Spiral matrix of size 3
9+
###### Spiral matrix of size 3
1110

12-
```plain
11+
```text
1312
1 2 3
1413
8 9 4
1514
7 6 5
1615
```
1716

18-
##### Spiral matrix of size 4
17+
###### Spiral matrix of size 4
1918

20-
```plain
19+
```text
2120
1 2 3 4
2221
12 13 14 5
2322
11 16 15 6

exercises/two-fer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ please see the [help page](http://exercism.io/languages/python).
3838

3939
## Source
4040

41-
This is an exercise to introduce users to basic programming constructs, just after hello World. [https://en.wikipedia.org/wiki/Two-fer](https://en.wikipedia.org/wiki/Two-fer)
41+
This is an exercise to introduce users to basic programming constructs, just after Hello World. [https://en.wikipedia.org/wiki/Two-fer](https://en.wikipedia.org/wiki/Two-fer)
4242

4343
## Submitting Incomplete Solutions
4444
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

0 commit comments

Comments
 (0)