Skip to content

Commit 1bd8529

Browse files
authored
Merge pull request #801 from Insti/Period_fixes
Add period to end of first description line.
2 parents b643dbc + 720e027 commit 1bd8529

File tree

23 files changed

+23
-23
lines changed

23 files changed

+23
-23
lines changed

exercises/acronym/description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Convert a long phrase to its acronym
1+
Convert a long phrase to its acronym.
22

33
Techies love their TLA (Three Letter Acronyms)!
44

exercises/binary/description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Convert a binary number, represented as a string (e.g. '101010'), to its decimal equivalent using first principles
1+
Convert a binary number, represented as a string (e.g. '101010'), to its decimal equivalent using first principles.
22

33
Implement binary to decimal conversion. Given a binary input
44
string, your program should produce a decimal output. The

exercises/bowling/description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Score a bowling game
1+
Score a bowling game.
22

33
Bowling is game where players roll a heavy ball to knock down pins
44
arranged in a triangle. Write code to keep track of the score

exercises/change/description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Correctly determine change to be given using the least number of coins
1+
Correctly determine change to be given using the least number of coins.
22

33
Correctly determine the fewest number of coins to be given to the user
44
such that the sum of the coins' value would equal the correct amount

exercises/connect/description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Compute the result for a game of Hex / Polygon
1+
Compute the result for a game of Hex / Polygon.
22

33
The abstract boardgame known as
44
[Hex](https://en.wikipedia.org/wiki/Hex_%28board_game%29) / Polygon /

exercises/dot-dsl/description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Write a Domain Specific Language similar to the Graphviz dot language
1+
Write a Domain Specific Language similar to the Graphviz dot language.
22

33
A [Domain Specific Language
44
(DSL)](https://en.wikipedia.org/wiki/Domain-specific_language) is a

exercises/error-handling/description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Implement various kinds of error handling and resource management
1+
Implement various kinds of error handling and resource management.
22

33
An important point of programming is how to handle errors and close
44
resources even if errors occur.

exercises/flatten-array/description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Take a nested list and return a single list with all values except nil/null
1+
Take a nested list and return a single list with all values except nil/null.
22

33
The challenge is to write a function that accepts an arbitrarily-deep nested list-like structure and returns a flattened structure without any nil/null values.
44

exercises/food-chain/description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Generate the lyrics of the song 'I Know an Old Lady Who Swallowed a Fly'
1+
Generate the lyrics of the song 'I Know an Old Lady Who Swallowed a Fly'.
22

33
While you could copy/paste the lyrics,
44
or read them from a file, this problem is much more

exercises/forth/description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Implement an evaluator for a very simple subset of Forth
1+
Implement an evaluator for a very simple subset of Forth.
22

33
[Forth](https://en.wikipedia.org/wiki/Forth_%28programming_language%29)
44
is a stack-based programming language. Implement a very basic evaluator

0 commit comments

Comments
 (0)