Skip to content

Commit ce49275

Browse files
Sync docs (#2789)
1 parent 2fbf89f commit ce49275

File tree

8 files changed

+78
-42
lines changed

8 files changed

+78
-42
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Instructions
22

33
Given a string containing brackets `[]`, braces `{}`, parentheses `()`, or any combination thereof, verify that any and all pairs are matched and nested correctly.
4-
The string may also contain other characters, which for the purposes of this exercise should be ignored.
4+
Any other characters should be ignored.
5+
For example, `"{what is (42)}?"` is balanced and `"[text}"` is not.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Introduction
2+
3+
You're given the opportunity to write software for the Bracketeer™, an ancient but powerful mainframe.
4+
The software that runs on it is written in a proprietary language.
5+
Much of its syntax is familiar, but you notice _lots_ of brackets, braces and parentheses.
6+
Despite the Bracketeer™ being powerful, it lacks flexibility.
7+
If the source code has any unbalanced brackets, braces or parentheses, the Bracketeer™ crashes and must be rebooted.
8+
To avoid such a scenario, you start writing code that can verify that brackets, braces, and parentheses are balanced before attempting to run it on the Bracketeer™.
Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,10 @@
11
# Instructions
22

3-
Implement a program that translates from English to Pig Latin.
3+
Your task is to translate text from English to Pig Latin using the following rules:
44

5-
Pig Latin is a made-up children's language that's intended to be confusing.
6-
It obeys a few simple rules (below), but when it's spoken quickly it's really difficult for non-children (and non-native speakers) to understand.
7-
8-
- **Rule 1**: If a word begins with a vowel sound, add an "ay" sound to the end of the word.
5+
- **Rule 1**: If a word begins with a vowel sound, add an "ay" sound to the end of the word (e.g. "apple" -> "appleay").
96
Please note that "xr" and "yt" at the beginning of a word make vowel sounds (e.g. "xray" -> "xrayay", "yttria" -> "yttriaay").
10-
- **Rule 2**: If a word begins with a consonant sound, move it to the end of the word and then add an "ay" sound to the end of the word.
7+
- **Rule 2**: If a word begins with a consonant sound, move it to the end of the word and then add an "ay" sound to the end of the word (e.g. "pig" -> "igpay").
118
Consonant sounds can be made up of multiple consonants, such as the "ch" in "chair" or "st" in "stand" (e.g. "chair" -> "airchay").
12-
- **Rule 3**: If a word starts with a consonant sound followed by "qu", move it to the end of the word, and then add an "ay" sound to the end of the word (e.g. "square" -> "aresquay").
9+
- **Rule 3**: If a word starts with a consonant sound followed by "qu", move them to the end of the word, and then add an "ay" sound to the end of the word (e.g. "square" -> "aresquay").
1310
- **Rule 4**: If a word contains a "y" after a consonant cluster or as the second letter in a two letter word it makes a vowel sound (e.g. "rhythm" -> "ythmrhay", "my" -> "ymay").
14-
15-
There are a few more rules for edge cases, and there are regional variants too.
16-
Check the tests for all the details.
17-
18-
Read more about [Pig Latin on Wikipedia][pig-latin].
19-
20-
[pig-latin]: https://en.wikipedia.org/wiki/Pig_latin
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Introduction
2+
3+
Your parents have challenged you and your sibling to a game of two-on-two basketball.
4+
Confident they'll win, they let you score the first couple of points, but then start taking over the game.
5+
Needing a little boost, you start speaking in [Pig Latin][pig-latin], which is a made-up children's language that's difficult for non-children to understand.
6+
This will give you the edge to prevail over your parents!
7+
8+
[pig-latin]: https://en.wikipedia.org/wiki/Pig_latin
Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,28 @@
11
# Instructions
22

3-
Given an age in seconds, calculate how old someone would be on:
3+
Given an age in seconds, calculate how old someone would be on a planet in our Solar System.
44

5-
- Mercury: orbital period 0.2408467 Earth years
6-
- Venus: orbital period 0.61519726 Earth years
7-
- Earth: orbital period 1.0 Earth years, 365.25 Earth days, or 31557600 seconds
8-
- Mars: orbital period 1.8808158 Earth years
9-
- Jupiter: orbital period 11.862615 Earth years
10-
- Saturn: orbital period 29.447498 Earth years
11-
- Uranus: orbital period 84.016846 Earth years
12-
- Neptune: orbital period 164.79132 Earth years
5+
One Earth year equals 365.25 Earth days, or 31,557,600 seconds.
6+
If you were told someone was 1,000,000,000 seconds old, their age would be 31.69 Earth-years.
137

14-
So if you were told someone were 1,000,000,000 seconds old, you should
15-
be able to say that they're 31.69 Earth-years old.
8+
For the other planets, you have to account for their orbital period in Earth Years:
169

17-
If you're wondering why Pluto didn't make the cut, go watch [this YouTube video][pluto-video].
10+
| Planet | Orbital period in Earth Years |
11+
| ------- | ----------------------------- |
12+
| Mercury | 0.2408467 |
13+
| Venus | 0.61519726 |
14+
| Earth | 1.0 |
15+
| Mars | 1.8808158 |
16+
| Jupiter | 11.862615 |
17+
| Saturn | 29.447498 |
18+
| Uranus | 84.016846 |
19+
| Neptune | 164.79132 |
1820

19-
Note: The actual length of one complete orbit of the Earth around the sun is closer to 365.256 days (1 sidereal year).
21+
~~~~exercism/note
22+
The actual length of one complete orbit of the Earth around the sun is closer to 365.256 days (1 sidereal year).
2023
The Gregorian calendar has, on average, 365.2425 days.
2124
While not entirely accurate, 365.25 is the value used in this exercise.
2225
See [Year on Wikipedia][year] for more ways to measure a year.
2326
24-
[pluto-video]: https://www.youtube.com/watch?v=Z_2gbGXzFbs
2527
[year]: https://en.wikipedia.org/wiki/Year#Summary
28+
~~~~
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Introduction
2+
3+
The year is 2525 and you've just embarked on a journey to visit all planets in the Solar System (Mercury, Venus, Earth, Mars, Jupiter, Saturn, Uranus and Neptune).
4+
The first stop is Mercury, where customs require you to fill out a form (bureaucracy is apparently _not_ Earth-specific).
5+
As you hand over the form to the customs officer, they scrutinize it and frown.
6+
"Do you _really_ expect me to believe you're just 50 years old?
7+
You must be closer to 200 years old!"
8+
9+
Amused, you wait for the customs officer to start laughing, but they appear to be dead serious.
10+
You realize that you've entered your age in _Earth years_, but the officer expected it in _Mercury years_!
11+
As Mercury's orbital period around the sun is significantly shorter than Earth, you're actually a lot older in Mercury years.
12+
After some quick calculations, you're able to provide your age in Mercury Years.
13+
The customs officer smiles, satisfied, and waves you through.
14+
You make a mental note to pre-calculate your planet-specific age _before_ future customs checks, to avoid such mix-ups.
15+
16+
~~~~exercism/note
17+
If you're wondering why Pluto didn't make the cut, go watch [this YouTube video][pluto-video].
18+
19+
[pluto-video]: https://www.youtube.com/watch?v=Z_2gbGXzFbs
20+
~~~~
Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Instructions
22

3-
The dice game [Yacht][yacht] is from the same family as Poker Dice, Generala and particularly Yahtzee, of which it is a precursor.
4-
In the game, five dice are rolled and the result can be entered in any of twelve categories.
5-
The score of a throw of the dice depends on category chosen.
3+
Given five dice and a category, calculate the score of the dice for that category.
4+
5+
~~~~exercism/note
6+
You'll always be presented with five dice.
7+
Each dice's value will be between one and six inclusively.
8+
The dice may be unordered.
9+
~~~~
610

711
## Scores in Yacht
812

@@ -21,15 +25,6 @@ The score of a throw of the dice depends on category chosen.
2125
| Choice | Sum of the dice | Any combination | 2 3 3 4 6 scores 18 |
2226
| Yacht | 50 points | All five dice showing the same face | 4 4 4 4 4 scores 50 |
2327

24-
If the dice do not satisfy the requirements of a category, the score is zero.
28+
If the dice do **not** satisfy the requirements of a category, the score is zero.
2529
If, for example, _Four Of A Kind_ is entered in the _Yacht_ category, zero points are scored.
2630
A _Yacht_ scores zero if entered in the _Full House_ category.
27-
28-
## Task
29-
30-
Given a list of values for five dice and a category, your solution should return the score of the dice for that category.
31-
If the dice do not satisfy the requirements of the category your solution should return 0.
32-
You can assume that five values will always be presented, and the value of each will be between one and six inclusively.
33-
You should not assume that the dice are ordered.
34-
35-
[yacht]: https://en.wikipedia.org/wiki/Yacht_(dice_game)
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Introduction
2+
3+
Each year, something new is "all the rage" in your high school.
4+
This year it is a dice game: [Yacht][yacht].
5+
6+
The game of Yacht is from the same family as Poker Dice, Generala and particularly Yahtzee, of which it is a precursor.
7+
The game consists of twelve rounds.
8+
In each, five dice are rolled and the player chooses one of twelve categories.
9+
The chosen category is then used to score the throw of the dice.
10+
11+
[yacht]: https://en.wikipedia.org/wiki/Yacht_(dice_game)

0 commit comments

Comments
 (0)