From 4110268ed331b1b4dac8888550f05d0dacb1865b Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Wed, 7 Apr 2021 17:04:59 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Sync=20exercise=20files=20keys?= =?UTF-8?q?=20based=20on=20file=20path=20patterns=20(#179)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- exercises/practice/accumulate/.meta/config.json | 12 +++++++++--- exercises/practice/acronym/.meta/config.json | 12 +++++++++--- exercises/practice/affine-cipher/.meta/config.json | 12 +++++++++--- exercises/practice/all-your-base/.meta/config.json | 12 +++++++++--- exercises/practice/allergies/.meta/config.json | 12 +++++++++--- exercises/practice/anagram/.meta/config.json | 12 +++++++++--- .../practice/armstrong-numbers/.meta/config.json | 12 +++++++++--- exercises/practice/atbash-cipher/.meta/config.json | 12 +++++++++--- exercises/practice/bob/.meta/config.json | 12 +++++++++--- .../practice/collatz-conjecture/.meta/config.json | 12 +++++++++--- .../practice/difference-of-squares/.meta/config.json | 12 +++++++++--- exercises/practice/etl/.meta/config.json | 12 +++++++++--- exercises/practice/gigasecond/.meta/config.json | 12 +++++++++--- exercises/practice/grains/.meta/config.json | 12 +++++++++--- exercises/practice/grep/.meta/config.json | 12 +++++++++--- exercises/practice/hamming/.meta/config.json | 12 +++++++++--- exercises/practice/hello-world/.meta/config.json | 12 +++++++++--- exercises/practice/isogram/.meta/config.json | 12 +++++++++--- exercises/practice/leap/.meta/config.json | 12 +++++++++--- exercises/practice/list-ops/.meta/config.json | 12 +++++++++--- exercises/practice/meetup/.meta/config.json | 12 +++++++++--- .../practice/nucleotide-count/.meta/config.json | 12 +++++++++--- exercises/practice/perfect-numbers/.meta/config.json | 12 +++++++++--- exercises/practice/phone-number/.meta/config.json | 12 +++++++++--- exercises/practice/raindrops/.meta/config.json | 12 +++++++++--- exercises/practice/reverse-string/.meta/config.json | 12 +++++++++--- .../practice/rna-transcription/.meta/config.json | 12 +++++++++--- exercises/practice/robot-name/.meta/config.json | 12 +++++++++--- exercises/practice/roman-numerals/.meta/config.json | 12 +++++++++--- exercises/practice/say/.meta/config.json | 12 +++++++++--- exercises/practice/scrabble-score/.meta/config.json | 12 +++++++++--- exercises/practice/two-fer/.meta/config.json | 12 +++++++++--- .../variable-length-quantity/.meta/config.json | 12 +++++++++--- exercises/practice/word-count/.meta/config.json | 12 +++++++++--- 34 files changed, 306 insertions(+), 102 deletions(-) diff --git a/exercises/practice/accumulate/.meta/config.json b/exercises/practice/accumulate/.meta/config.json index 761bcf28..b5d511d9 100644 --- a/exercises/practice/accumulate/.meta/config.json +++ b/exercises/practice/accumulate/.meta/config.json @@ -2,9 +2,15 @@ "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.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "accumulate.rkt" + ], + "test": [ + "accumulate-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "Conversation with James Edward Gray II", "source_url": "https://twitter.com/jeg2" diff --git a/exercises/practice/acronym/.meta/config.json b/exercises/practice/acronym/.meta/config.json index fd1f09f7..40d7786d 100644 --- a/exercises/practice/acronym/.meta/config.json +++ b/exercises/practice/acronym/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Convert a long phrase to its acronym", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "acronym.rkt" + ], + "test": [ + "acronym-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "Julien Vanier", "source_url": "https://github.com/monkbroc" diff --git a/exercises/practice/affine-cipher/.meta/config.json b/exercises/practice/affine-cipher/.meta/config.json index 92cef19a..ed29db83 100644 --- a/exercises/practice/affine-cipher/.meta/config.json +++ b/exercises/practice/affine-cipher/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Create an implementation of the Affine cipher, an ancient encryption algorithm from the Middle East.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "affine-cipher.rkt" + ], + "test": [ + "affine-cipher-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "Wikipedia", "source_url": "http://en.wikipedia.org/wiki/Affine_cipher" diff --git a/exercises/practice/all-your-base/.meta/config.json b/exercises/practice/all-your-base/.meta/config.json index a49d064b..44b5f2cb 100644 --- a/exercises/practice/all-your-base/.meta/config.json +++ b/exercises/practice/all-your-base/.meta/config.json @@ -2,8 +2,14 @@ "blurb": "Convert a number, represented as a sequence of digits in one base, to any other base.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "all-your-base.rkt" + ], + "test": [ + "all-your-base-test.rkt" + ], + "example": [ + "example.rkt" + ] } } diff --git a/exercises/practice/allergies/.meta/config.json b/exercises/practice/allergies/.meta/config.json index fbab1dbc..f95a291c 100644 --- a/exercises/practice/allergies/.meta/config.json +++ b/exercises/practice/allergies/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Given a person's allergy score, determine whether or not they're allergic to a given item, and their full list of allergies.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "allergies.rkt" + ], + "test": [ + "allergies-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "Jumpstart Lab Warm-up", "source_url": "http://jumpstartlab.com" diff --git a/exercises/practice/anagram/.meta/config.json b/exercises/practice/anagram/.meta/config.json index 1a0d3334..90b6654c 100644 --- a/exercises/practice/anagram/.meta/config.json +++ b/exercises/practice/anagram/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Given a word and a list of possible anagrams, select the correct sublist.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "anagram.rkt" + ], + "test": [ + "anagram-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "Inspired by the Extreme Startup game", "source_url": "https://github.com/rchatley/extreme_startup" diff --git a/exercises/practice/armstrong-numbers/.meta/config.json b/exercises/practice/armstrong-numbers/.meta/config.json index 89b37fbe..cc492412 100644 --- a/exercises/practice/armstrong-numbers/.meta/config.json +++ b/exercises/practice/armstrong-numbers/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Determine if a number is an Armstrong number", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "armstrong-numbers.rkt" + ], + "test": [ + "armstrong-numbers-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "Wikipedia", "source_url": "https://en.wikipedia.org/wiki/Narcissistic_number" diff --git a/exercises/practice/atbash-cipher/.meta/config.json b/exercises/practice/atbash-cipher/.meta/config.json index 06ddd89e..1acb2b2f 100644 --- a/exercises/practice/atbash-cipher/.meta/config.json +++ b/exercises/practice/atbash-cipher/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Create an implementation of the atbash cipher, an ancient encryption system created in the Middle East.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "atbash-cipher.rkt" + ], + "test": [ + "atbash-cipher-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "Wikipedia", "source_url": "http://en.wikipedia.org/wiki/Atbash" diff --git a/exercises/practice/bob/.meta/config.json b/exercises/practice/bob/.meta/config.json index 12a4d82a..9903b614 100644 --- a/exercises/practice/bob/.meta/config.json +++ b/exercises/practice/bob/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Bob is a lackadaisical teenager. In conversation, his responses are very limited.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "bob.rkt" + ], + "test": [ + "bob-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "Inspired by the 'Deaf Grandma' exercise in Chris Pine's Learn to Program tutorial.", "source_url": "http://pine.fm/LearnToProgram/?Chapter=06" diff --git a/exercises/practice/collatz-conjecture/.meta/config.json b/exercises/practice/collatz-conjecture/.meta/config.json index ea35f19b..c4cd07a4 100644 --- a/exercises/practice/collatz-conjecture/.meta/config.json +++ b/exercises/practice/collatz-conjecture/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Calculate the number of steps to reach 1 using the Collatz conjecture", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "collatz-conjecture.rkt" + ], + "test": [ + "collatz-conjecture-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "An unsolved problem in mathematics named after mathematician Lothar Collatz", "source_url": "https://en.wikipedia.org/wiki/3x_%2B_1_problem" diff --git a/exercises/practice/difference-of-squares/.meta/config.json b/exercises/practice/difference-of-squares/.meta/config.json index d11f259a..489c13b1 100644 --- a/exercises/practice/difference-of-squares/.meta/config.json +++ b/exercises/practice/difference-of-squares/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Find the difference between the square of the sum and the sum of the squares of the first N natural numbers.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "difference-of-squares.rkt" + ], + "test": [ + "difference-of-squares-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "Problem 6 at Project Euler", "source_url": "http://projecteuler.net/problem=6" diff --git a/exercises/practice/etl/.meta/config.json b/exercises/practice/etl/.meta/config.json index 6b116b60..86559067 100644 --- a/exercises/practice/etl/.meta/config.json +++ b/exercises/practice/etl/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "We are going to do the `Transform` step of an Extract-Transform-Load.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "etl.rkt" + ], + "test": [ + "etl-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "The Jumpstart Lab team", "source_url": "http://jumpstartlab.com" diff --git a/exercises/practice/gigasecond/.meta/config.json b/exercises/practice/gigasecond/.meta/config.json index 7f555b2a..2a838a61 100644 --- a/exercises/practice/gigasecond/.meta/config.json +++ b/exercises/practice/gigasecond/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Given a moment, determine the moment that would be after a gigasecond has passed.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "gigasecond.rkt" + ], + "test": [ + "gigasecond-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "Chapter 9 in Chris Pine's online Learn to Program tutorial.", "source_url": "http://pine.fm/LearnToProgram/?Chapter=09" diff --git a/exercises/practice/grains/.meta/config.json b/exercises/practice/grains/.meta/config.json index 0cbdaf98..1a41836e 100644 --- a/exercises/practice/grains/.meta/config.json +++ b/exercises/practice/grains/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Calculate the number of grains of wheat on a chessboard given that the number on each square doubles.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "grains.rkt" + ], + "test": [ + "grains-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "JavaRanch Cattle Drive, exercise 6", "source_url": "http://www.javaranch.com/grains.jsp" diff --git a/exercises/practice/grep/.meta/config.json b/exercises/practice/grep/.meta/config.json index 5a90afb2..f37bd509 100644 --- a/exercises/practice/grep/.meta/config.json +++ b/exercises/practice/grep/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Search a file for lines matching a regular expression pattern. Return the line number and contents of each matching line.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "grep.rkt" + ], + "test": [ + "grep-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "Conversation with Nate Foster.", "source_url": "http://www.cs.cornell.edu/Courses/cs3110/2014sp/hw/0/ps0.pdf" diff --git a/exercises/practice/hamming/.meta/config.json b/exercises/practice/hamming/.meta/config.json index e5d69818..2f74f39a 100644 --- a/exercises/practice/hamming/.meta/config.json +++ b/exercises/practice/hamming/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Calculate the Hamming difference between two DNA strands.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "hamming.rkt" + ], + "test": [ + "hamming-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "The Calculating Point Mutations problem at Rosalind", "source_url": "http://rosalind.info/problems/hamm/" diff --git a/exercises/practice/hello-world/.meta/config.json b/exercises/practice/hello-world/.meta/config.json index 74a832cd..895996de 100644 --- a/exercises/practice/hello-world/.meta/config.json +++ b/exercises/practice/hello-world/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "The classical introductory exercise. Just say \"Hello, World!\"", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "hello-world.rkt" + ], + "test": [ + "hello-world-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "This is an exercise to introduce users to using Exercism", "source_url": "http://en.wikipedia.org/wiki/%22Hello,_world!%22_program" diff --git a/exercises/practice/isogram/.meta/config.json b/exercises/practice/isogram/.meta/config.json index bf61c329..f640fc63 100644 --- a/exercises/practice/isogram/.meta/config.json +++ b/exercises/practice/isogram/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Determine if a word or phrase is an isogram.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "isogram.rkt" + ], + "test": [ + "isogram-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "Wikipedia", "source_url": "https://en.wikipedia.org/wiki/Isogram" diff --git a/exercises/practice/leap/.meta/config.json b/exercises/practice/leap/.meta/config.json index 0738045f..4e171ec2 100644 --- a/exercises/practice/leap/.meta/config.json +++ b/exercises/practice/leap/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Given a year, report if it is a leap year.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "leap.rkt" + ], + "test": [ + "leap-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "JavaRanch Cattle Drive, exercise 3", "source_url": "http://www.javaranch.com/leap.jsp" diff --git a/exercises/practice/list-ops/.meta/config.json b/exercises/practice/list-ops/.meta/config.json index cc872847..c11a7f67 100644 --- a/exercises/practice/list-ops/.meta/config.json +++ b/exercises/practice/list-ops/.meta/config.json @@ -2,8 +2,14 @@ "blurb": "Implement basic list operations", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "list-ops.rkt" + ], + "test": [ + "list-ops-test.rkt" + ], + "example": [ + "example.rkt" + ] } } diff --git a/exercises/practice/meetup/.meta/config.json b/exercises/practice/meetup/.meta/config.json index 9b431fe3..da94779c 100644 --- a/exercises/practice/meetup/.meta/config.json +++ b/exercises/practice/meetup/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Calculate the date of meetups.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "meetup.rkt" + ], + "test": [ + "meetup-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "Jeremy Hinegardner mentioned a Boulder meetup that happens on the Wednesteenth of every month", "source_url": "https://twitter.com/copiousfreetime" diff --git a/exercises/practice/nucleotide-count/.meta/config.json b/exercises/practice/nucleotide-count/.meta/config.json index 4919a329..9b22283e 100644 --- a/exercises/practice/nucleotide-count/.meta/config.json +++ b/exercises/practice/nucleotide-count/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Given a DNA string, compute how many times each nucleotide occurs in the string.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "nucleotide-count.rkt" + ], + "test": [ + "nucleotide-count-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "The Calculating DNA Nucleotides_problem at Rosalind", "source_url": "http://rosalind.info/problems/dna/" diff --git a/exercises/practice/perfect-numbers/.meta/config.json b/exercises/practice/perfect-numbers/.meta/config.json index e266fc4c..4fb99af3 100644 --- a/exercises/practice/perfect-numbers/.meta/config.json +++ b/exercises/practice/perfect-numbers/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Determine if a number is perfect, abundant, or deficient based on Nicomachus' (60 - 120 CE) classification scheme for positive integers.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "perfect-numbers.rkt" + ], + "test": [ + "perfect-numbers-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "Taken from Chapter 2 of Functional Thinking by Neal Ford.", "source_url": "http://shop.oreilly.com/product/0636920029687.do" diff --git a/exercises/practice/phone-number/.meta/config.json b/exercises/practice/phone-number/.meta/config.json index 86769da8..dbdbe2e4 100644 --- a/exercises/practice/phone-number/.meta/config.json +++ b/exercises/practice/phone-number/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Clean up user-entered phone numbers so that they can be sent SMS messages.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "phone-number.rkt" + ], + "test": [ + "phone-number-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "Event Manager by JumpstartLab", "source_url": "http://tutorials.jumpstartlab.com/projects/eventmanager.html" diff --git a/exercises/practice/raindrops/.meta/config.json b/exercises/practice/raindrops/.meta/config.json index 467b2f15..dbf82b11 100644 --- a/exercises/practice/raindrops/.meta/config.json +++ b/exercises/practice/raindrops/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Convert a number to a string, the content of which depends on the number's factors.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "raindrops.rkt" + ], + "test": [ + "raindrops-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "A variation on FizzBuzz, a famous technical interview question that is intended to weed out potential candidates. That question is itself derived from Fizz Buzz, a popular children's game for teaching division.", "source_url": "https://en.wikipedia.org/wiki/Fizz_buzz" diff --git a/exercises/practice/reverse-string/.meta/config.json b/exercises/practice/reverse-string/.meta/config.json index 59869d94..c82b8992 100644 --- a/exercises/practice/reverse-string/.meta/config.json +++ b/exercises/practice/reverse-string/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Reverse a string", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "reverse-string.rkt" + ], + "test": [ + "reverse-string-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "Introductory challenge to reverse an input string", "source_url": "https://medium.freecodecamp.org/how-to-reverse-a-string-in-javascript-in-3-different-ways-75e4763c68cb" diff --git a/exercises/practice/rna-transcription/.meta/config.json b/exercises/practice/rna-transcription/.meta/config.json index b6f300aa..c9190b99 100644 --- a/exercises/practice/rna-transcription/.meta/config.json +++ b/exercises/practice/rna-transcription/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Given a DNA strand, return its RNA Complement Transcription.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "rna-transcription.rkt" + ], + "test": [ + "rna-transcription-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "Hyperphysics", "source_url": "http://hyperphysics.phy-astr.gsu.edu/hbase/Organic/transcription.html" diff --git a/exercises/practice/robot-name/.meta/config.json b/exercises/practice/robot-name/.meta/config.json index 0a200f74..bbf19139 100644 --- a/exercises/practice/robot-name/.meta/config.json +++ b/exercises/practice/robot-name/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Manage robot factory settings.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "robot-name.rkt" + ], + "test": [ + "robot-name-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "A debugging session with Paul Blackwell at gSchool." } diff --git a/exercises/practice/roman-numerals/.meta/config.json b/exercises/practice/roman-numerals/.meta/config.json index 7ab29654..2a48c280 100644 --- a/exercises/practice/roman-numerals/.meta/config.json +++ b/exercises/practice/roman-numerals/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Write a function to convert from normal numbers to Roman Numerals.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "roman-numerals.rkt" + ], + "test": [ + "roman-numerals-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "The Roman Numeral Kata", "source_url": "http://codingdojo.org/cgi-bin/index.pl?KataRomanNumerals" diff --git a/exercises/practice/say/.meta/config.json b/exercises/practice/say/.meta/config.json index 1330a751..9d1c38c0 100644 --- a/exercises/practice/say/.meta/config.json +++ b/exercises/practice/say/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Given a number from 0 to 999,999,999,999, spell out that number in English.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "say.rkt" + ], + "test": [ + "say-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "A variation on JavaRanch CattleDrive, exercise 4a", "source_url": "http://www.javaranch.com/say.jsp" diff --git a/exercises/practice/scrabble-score/.meta/config.json b/exercises/practice/scrabble-score/.meta/config.json index 1b2cb240..0350a3e1 100644 --- a/exercises/practice/scrabble-score/.meta/config.json +++ b/exercises/practice/scrabble-score/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Given a word, compute the Scrabble score for that word.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "scrabble-score.rkt" + ], + "test": [ + "scrabble-score-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "Inspired by the Extreme Startup game", "source_url": "https://github.com/rchatley/extreme_startup" diff --git a/exercises/practice/two-fer/.meta/config.json b/exercises/practice/two-fer/.meta/config.json index 52924fa7..ca078c7a 100644 --- a/exercises/practice/two-fer/.meta/config.json +++ b/exercises/practice/two-fer/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Create a sentence of the form \"One for X, one for me.\"", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "two-fer.rkt" + ], + "test": [ + "two-fer-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source_url": "https://github.com/exercism/problem-specifications/issues/757" } diff --git a/exercises/practice/variable-length-quantity/.meta/config.json b/exercises/practice/variable-length-quantity/.meta/config.json index c58782b8..45f6929f 100644 --- a/exercises/practice/variable-length-quantity/.meta/config.json +++ b/exercises/practice/variable-length-quantity/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Implement variable length quantity encoding and decoding.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "variable-length-quantity.rkt" + ], + "test": [ + "variable-length-quantity-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "A poor Splice developer having to implement MIDI encoding/decoding.", "source_url": "https://splice.com" diff --git a/exercises/practice/word-count/.meta/config.json b/exercises/practice/word-count/.meta/config.json index f3b3ed1e..cb0db616 100644 --- a/exercises/practice/word-count/.meta/config.json +++ b/exercises/practice/word-count/.meta/config.json @@ -2,9 +2,15 @@ "blurb": "Given a phrase, count the occurrences of each word in that phrase.", "authors": [], "files": { - "solution": [], - "test": [], - "example": [] + "solution": [ + "word-count.rkt" + ], + "test": [ + "word-count-test.rkt" + ], + "example": [ + "example.rkt" + ] }, "source": "This is a classic toy problem, but we were reminded of it by seeing it in the Go Tour." }