Skip to content

Commit 3054daf

Browse files
committed
Sync metadata
1 parent 50e5119 commit 3054daf

File tree

21 files changed

+47
-50
lines changed

21 files changed

+47
-50
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
".meta/proof.ci.ts"
1818
]
1919
},
20-
"blurb": "Write a function to solve alphametics puzzles.",
20+
"blurb": "Given an alphametics puzzle, find the correct solution.",
2121
"custom": {
2222
"version.tests.compatibility": "jest-29",
2323
"flag.tests.task-per-describe": false,

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
".meta/proof.ci.ts"
1919
]
2020
},
21-
"blurb": "Create an implementation of the atbash cipher, an ancient encryption system created in the Middle East.",
21+
"blurb": "Create an implementation of the Atbash cipher, an ancient encryption system created in the Middle East.",
2222
"custom": {
2323
"version.tests.compatibility": "jest-29",
2424
"flag.tests.task-per-describe": false,
2525
"flag.tests.may-run-long": false,
2626
"flag.tests.includes-optional": false,
2727
"flag.tests.jest": true,
2828
"flag.tests.tstyche": false
29-
},
29+
}
3030
"source": "Wikipedia",
3131
"source_url": "https://en.wikipedia.org/wiki/Atbash"
3232
}

exercises/practice/binary-search-tree/.meta/config.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
"flag.tests.includes-optional": false,
2727
"flag.tests.jest": true,
2828
"flag.tests.tstyche": false
29-
},
30-
"source": "Josh Cheek",
31-
"source_url": "https://twitter.com/josh_cheek"
29+
}
30+
"source": "Josh Cheek"
3231
}

exercises/practice/clock/.meta/config.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
"flag.tests.includes-optional": false,
2626
"flag.tests.jest": true,
2727
"flag.tests.tstyche": false
28-
},
29-
"source": "Pairing session with Erin Drummond",
30-
"source_url": "https://twitter.com/ebdrummond"
28+
}
29+
"source": "Pairing session with Erin Drummond"
3130
}

exercises/practice/collatz-conjecture/.meta/config.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
".meta/proof.ci.ts"
1818
]
1919
},
20-
"blurb": "Calculate the number of steps to reach 1 using the Collatz conjecture",
20+
"blurb": "Calculate the number of steps to reach 1 using the Collatz conjecture.",
2121
"custom": {
2222
"version.tests.compatibility": "jest-29",
2323
"flag.tests.task-per-describe": false,
2424
"flag.tests.may-run-long": false,
2525
"flag.tests.includes-optional": false,
2626
"flag.tests.jest": true,
2727
"flag.tests.tstyche": false
28-
},
29-
"source": "An unsolved problem in mathematics named after mathematician Lothar Collatz",
30-
"source_url": "https://en.wikipedia.org/wiki/3x_%2B_1_problem"
28+
}
29+
"source": "Wikipedia",
30+
"source_url": "https://en.wikipedia.org/wiki/Collatz_conjecture"
3131
}

exercises/practice/darts/.meta/config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
".meta/proof.ci.ts"
1717
]
1818
},
19-
"blurb": "Write a function that returns the earned points in a single toss of a Darts game.",
19+
"blurb": "Calculate the points scored in a single toss of a Darts game.",
2020
"custom": {
2121
"version.tests.compatibility": "jest-29",
2222
"flag.tests.task-per-describe": false,
2323
"flag.tests.may-run-long": false,
2424
"flag.tests.includes-optional": false,
2525
"flag.tests.jest": true,
2626
"flag.tests.tstyche": false
27-
},
27+
}
2828
"source": "Inspired by an exercise created by a professor Della Paolera in Argentina"
2929
}

exercises/practice/eliuds-eggs/.meta/config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"flag.tests.includes-optional": false,
2222
"flag.tests.jest": true,
2323
"flag.tests.tstyche": false
24-
},
24+
}
2525
"source": "Christian Willner, Eric Willigers",
26-
"source_url": "https://forum.exercism.org/t/new-exercise-suggestion-eliuds-eggs/7632/5"
26+
"source_url": "https://forum.exercism.org/t/new-exercise-suggestion-pop-count/7632/5"
2727
}

exercises/practice/etl/.meta/config.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
".meta/proof.ci.ts"
1919
]
2020
},
21-
"blurb": "We are going to do the `Transform` step of an Extract-Transform-Load.",
21+
"blurb": "Change the data format for scoring a game to more easily add other languages.",
2222
"custom": {
2323
"version.tests.compatibility": "jest-29",
2424
"flag.tests.task-per-describe": false,
2525
"flag.tests.may-run-long": false,
2626
"flag.tests.includes-optional": false,
2727
"flag.tests.jest": true,
2828
"flag.tests.tstyche": false
29-
},
30-
"source": "Exercise by the JumpstartLab team for students at The Turing School of Software and Design.",
29+
}
30+
"source": "Based on an exercise by the JumpstartLab team for students at The Turing School of Software and Design.",
3131
"source_url": "https://turing.edu"
3232
}

exercises/practice/flatten-array/.meta/config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
".meta/proof.ci.ts"
1818
]
1919
},
20-
"blurb": "Take a nested list and return a single list with all values except nil/null",
20+
"blurb": "Take a nested list and return a single list with all values except nil/null.",
2121
"custom": {
2222
"version.tests.compatibility": "jest-29",
2323
"flag.tests.task-per-describe": false,
2424
"flag.tests.may-run-long": false,
2525
"flag.tests.includes-optional": false,
2626
"flag.tests.jest": true,
2727
"flag.tests.tstyche": false
28-
},
28+
}
2929
"source": "Interview Question",
3030
"source_url": "https://reference.wolfram.com/language/ref/Flatten.html"
3131
}

exercises/practice/grade-school/.meta/config.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,14 @@
1818
".meta/proof.ci.ts"
1919
]
2020
},
21-
"blurb": "Given students' names along with the grade that they are in, create a roster for the school",
21+
"blurb": "Given students' names along with the grade that they are in, create a roster for the school.",
2222
"custom": {
2323
"version.tests.compatibility": "jest-29",
2424
"flag.tests.task-per-describe": false,
2525
"flag.tests.may-run-long": false,
2626
"flag.tests.includes-optional": false,
2727
"flag.tests.jest": true,
2828
"flag.tests.tstyche": false
29-
},
30-
"source": "A pairing session with Phil Battos at gSchool",
31-
"source_url": "http://gschool.it"
29+
}
30+
"source": "A pairing session with Phil Battos at gSchool"
3231
}

0 commit comments

Comments
 (0)