Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions exercises/kindergarten-garden/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ actual dirt, and grow actual plants.

They've chosen to grow grass, clover, radishes, and violets.

To this end, the children have put little cups along the window sills, and
planted one type of plant in each cup, choosing randomly from the available
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops, that's my handy work from #948. My bad! Thanks @petertseng

To this end, the children have put little cups along the window sills, and
planted one type of plant in each cup, choosing randomly from the available
types of seeds.

```text
Expand All @@ -23,7 +23,7 @@ There are 12 children in the class:
- Eve, Fred, Ginny, Harriet,
- Ileana, Joseph, Kincaid, and Larry.

Each child gets 4 cups, two on each row. Their teacher assigns cups to
Each child gets 4 cups, two on each row. Their teacher assigns cups to
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same as before

the children alphabetically by their names.

The following diagram represents Alice's plants:
Expand Down
4 changes: 2 additions & 2 deletions exercises/nucleotide-count/description.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Given a single stranded DNA string, compute how many times each nucleotide occurs in the string.

The genetic language of every living thing on the planet is DNA.
DNA is a large molecule that is built from an extremely long sequence of individual elements called nucleotides.
The genetic language of every living thing on the planet is DNA.
DNA is a large molecule that is built from an extremely long sequence of individual elements called nucleotides.
4 types exist in DNA and these differ only slightly and can be represented as the following symbols: 'A' for adenine, 'C' for cytosine, 'G' for guanine, and 'T' thymine.

Here is an analogy:
Expand Down
2 changes: 1 addition & 1 deletion exercises/palindrome-products/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Given a range of numbers, find the largest and smallest palindromes which
are products of numbers within that range.

Your solution should return the largest and smallest palindromes, along with the
factors of each within the range. If the largest or smallest palindrome has more
factors of each within the range. If the largest or smallest palindrome has more
than one pair of factors within the range, then return all the pairs.

## Example 1
Expand Down
18 changes: 9 additions & 9 deletions exercises/rectangles/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,27 +35,27 @@ The above diagram contains 6 rectangles:
```

```text


+--+
| |
+--+
```

```text


+--+
| |
+--+
```

```text
++
++

++
++


```

You may assume that the input is always a proper rectangle (i.e. the length of
Expand Down