Skip to content

Commit f4f81f0

Browse files
ErikSchierboommirkoperillo
authored andcommitted
Add blurb to Practice Exercise .meta/config.json files
Each Practice Exercise will have to define a blurb, which is a short description of the exercise. The blurb will be displayed on a track's exercises page (e.g. https://exercism.lol/tracks/csharp/exercises). For Practice Exercises that are based on an exercise defined in the problem-specification repo, the blurb must match the contents of the problem-specifications exercises, which is defined in its `metadata.yml` file. In this commit, we'll do an initial syncing of the blurb. The new [configlet](https://github.com/exercism/configlet) version will add support for doing this syncing automatically. If the Practice Exercise was _not_ based on a problems-specifications exercise, we've used the blurb from its `.meta/metadata.yml` file as the blurb in the .meta/config.json file. See [the spec](https://github.com/exercism/docs/blob/main/anatomy/tracks/practice-exercises.md#file-metaconfigjson) for more information.
1 parent 93e4533 commit f4f81f0

120 files changed

Lines changed: 120 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

exercises/practice/accumulate/.meta/config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"blurb": "Implement the `accumulate` operation, which, given a collection and an operation to perform on each element of the collection, returns a new collection containing the result of applying that operation to each element of the input collection.",
23
"authors": [],
34
"files": {
45
"solution": [],

exercises/practice/acronym/.meta/config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"blurb": "Convert a long phrase to its acronym",
23
"authors": [],
34
"files": {
45
"solution": [],

exercises/practice/affine-cipher/.meta/config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"blurb": "Create an implementation of the Affine cipher, an ancient encryption algorithm from the Middle East.",
23
"authors": [],
34
"files": {
45
"solution": [],

exercises/practice/all-your-base/.meta/config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"blurb": "Convert a number, represented as a sequence of digits in one base, to any other base.",
23
"authors": [],
34
"files": {
45
"solution": [],

exercises/practice/allergies/.meta/config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"blurb": "Given a person's allergy score, determine whether or not they're allergic to a given item, and their full list of allergies.",
23
"authors": [],
34
"files": {
45
"solution": [],

exercises/practice/alphametics/.meta/config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"blurb": "Write a function to solve alphametics puzzles.",
23
"authors": [],
34
"files": {
45
"solution": [],

exercises/practice/anagram/.meta/config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"blurb": "Given a word and a list of possible anagrams, select the correct sublist.",
23
"authors": [],
34
"files": {
45
"solution": [],

exercises/practice/armstrong-numbers/.meta/config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"blurb": "Determine if a number is an Armstrong number",
23
"authors": [],
34
"files": {
45
"solution": [],

exercises/practice/atbash-cipher/.meta/config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"blurb": "Create an implementation of the atbash cipher, an ancient encryption system created in the Middle East.",
23
"authors": [],
34
"files": {
45
"solution": [],

exercises/practice/bank-account/.meta/config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"blurb": "Simulate a bank account supporting opening/closing, withdraws, and deposits of money. Watch out for concurrent transactions!",
23
"authors": [],
34
"files": {
45
"solution": [],

0 commit comments

Comments
 (0)