Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

housekeeping: sync filepaths (invalidators) #191

Merged
merged 1 commit into from
May 16, 2024
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
3 changes: 3 additions & 0 deletions exercises/practice/all-your-base/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Convert a number, represented as a sequence of digits in one base, to any other base."
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/allergies/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Given a person's allergy score, determine whether or not they're allergic to a given item, and their full list of allergies.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/anagram/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Given a word and a list of possible anagrams, select the correct sublist.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/binary-search/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Implement a binary search algorithm.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/diamond/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Given a letter, print a diamond starting with 'A' with the supplied letter at the widest point.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/difference-of-squares/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Find the difference between the square of the sum and the sum of the squares of the first N natural numbers.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/dnd-character/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Randomly generate Dungeons & Dragons characters.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/flatten-array/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Take a nested list and return a single list with all values except nil/null.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/food-chain/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Generate the lyrics of the song 'I Know an Old Lady Who Swallowed a Fly'.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/grains/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Calculate the number of grains of wheat on a chessboard given that the number on each square doubles.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/high-scores/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Manage a player's High Score list.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/kindergarten-garden/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Given a diagram, determine which plants each child in the kindergarten class is responsible for.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/knapsack/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Given a knapsack that can only carry a certain weight, determine which items to put in the knapsack in order to maximize their combined value.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/largest-series-product/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Given a string of digits, calculate the largest product for a contiguous substring of digits of length n.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/list-ops/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Implement basic list operations."
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/matching-brackets/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Make sure the brackets and braces all match.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/matrix/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Given a string representing a matrix of numbers, return the rows and columns of that matrix.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/meetup/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Calculate the date of meetups.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/nucleotide-count/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Given a DNA string, compute how many times each nucleotide occurs in the string.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Count the frequency of letters in texts using parallel computation."
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/pascals-triangle/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Compute Pascal's triangle up to a given number of rows.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/perfect-numbers/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Determine if a number is perfect, abundant, or deficient based on Nicomachus' (60 - 120 CE) classification scheme for positive integers.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/phone-number/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Clean up user-entered phone numbers so that they can be sent SMS messages.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/protein-translation/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Translate RNA sequences into proteins.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/proverb/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "For want of a horseshoe nail, a kingdom was lost, or so the saying goes. Output the full text of this proverbial rhyme.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/rna-transcription/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Given a DNA strand, return its RNA Complement Transcription.",
Expand Down
5 changes: 4 additions & 1 deletion exercises/practice/rotational-cipher/.meta/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"authors": [
"\u001b[Aerikschierboom"
"\u001B[Aerikschierboom"
],
"files": {
"solution": [
Expand All @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Create an implementation of the rotational cipher, also sometimes called the Caesar cipher.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/scrabble-score/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Given a word, compute the Scrabble score for that word.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/secret-handshake/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Given a decimal number, convert it to the appropriate sequence of events for a secret handshake.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/space-age/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Given an age in seconds, calculate how old someone is in terms of a given planet's solar years.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/spiral-matrix/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Given the size, return a square matrix of numbers in spiral order.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/square-root/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Given a natural radicand, return its square root.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/strain/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Implement the `keep` and `discard` operation on collections.",
Expand Down
3 changes: 3 additions & 0 deletions exercises/practice/sum-of-multiples/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
],
"example": [
".meta/example.8th"
],
"invalidator": [
"libs/exercism/test"
]
},
"blurb": "Given a number, find the sum of all the multiples of particular numbers up to but not including that number.",
Expand Down
Loading