Skip to content

Commit

Permalink
Update config.json files
Browse files Browse the repository at this point in the history
  • Loading branch information
m-dango committed Jan 1, 2024
1 parent 370f44a commit 0ec0e4c
Show file tree
Hide file tree
Showing 71 changed files with 213 additions and 213 deletions.
6 changes: 3 additions & 3 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
"checklist_issue": 30,
"files": {
"solution": [
"%{pascal_slug}.rakumod"
"lib/%{pascal_slug}.rakumod"
],
"test": [
"%{kebab_slug}.rakutest"
"t/%{kebab_slug}.rakutest"
],
"example": [
".meta/solutions/%{pascal_slug}.rakumod"
".meta/solutions/lib/%{pascal_slug}.rakumod"
],
"exemplar": [
".meta/%{pascal_slug}.rakumod"
Expand Down
6 changes: 3 additions & 3 deletions exercises/practice/accumulate/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
],
"files": {
"solution": [
"Accumulate.rakumod"
"lib/Accumulate.rakumod"
],
"test": [
"accumulate.rakutest"
"t/accumulate.rakutest"
],
"example": [
".meta/solutions/Accumulate.rakumod"
".meta/solutions/lib/Accumulate.rakumod"
]
},
"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.",
Expand Down
6 changes: 3 additions & 3 deletions exercises/practice/acronym/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
],
"files": {
"solution": [
"Acronym.rakumod"
"lib/Acronym.rakumod"
],
"test": [
"acronym.rakutest"
"t/acronym.rakutest"
],
"example": [
".meta/solutions/Acronym.rakumod"
".meta/solutions/lib/Acronym.rakumod"
]
},
"blurb": "Convert a long phrase to its acronym.",
Expand Down
6 changes: 3 additions & 3 deletions exercises/practice/affine-cipher/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
],
"files": {
"solution": [
"AffineCipher.rakumod"
"lib/AffineCipher.rakumod"
],
"test": [
"affine-cipher.rakutest"
"t/affine-cipher.rakutest"
],
"example": [
".meta/solutions/AffineCipher.rakumod"
".meta/solutions/lib/AffineCipher.rakumod"
]
},
"blurb": "Create an implementation of the Affine cipher, an ancient encryption algorithm from the Middle East.",
Expand Down
6 changes: 3 additions & 3 deletions exercises/practice/all-your-base/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
],
"files": {
"solution": [
"AllYourBase.rakumod"
"lib/AllYourBase.rakumod"
],
"test": [
"all-your-base.rakutest"
"t/all-your-base.rakutest"
],
"example": [
".meta/solutions/AllYourBase.rakumod"
".meta/solutions/lib/AllYourBase.rakumod"
]
},
"blurb": "Convert a number, represented as a sequence of digits in one base, to any other base."
Expand Down
6 changes: 3 additions & 3 deletions exercises/practice/allergies/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
],
"files": {
"solution": [
"Allergies.rakumod"
"lib/Allergies.rakumod"
],
"test": [
"allergies.rakutest"
"t/allergies.rakutest"
],
"example": [
".meta/solutions/Allergies.rakumod"
".meta/solutions/lib/Allergies.rakumod"
]
},
"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
6 changes: 3 additions & 3 deletions exercises/practice/anagram/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
],
"files": {
"solution": [
"Anagram.rakumod"
"lib/Anagram.rakumod"
],
"test": [
"anagram.rakutest"
"t/anagram.rakutest"
],
"example": [
".meta/solutions/Anagram.rakumod"
".meta/solutions/lib/Anagram.rakumod"
]
},
"blurb": "Given a word and a list of possible anagrams, select the correct sublist.",
Expand Down
6 changes: 3 additions & 3 deletions exercises/practice/armstrong-numbers/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
],
"files": {
"solution": [
"ArmstrongNumbers.rakumod"
"lib/ArmstrongNumbers.rakumod"
],
"test": [
"armstrong-numbers.rakutest"
"t/armstrong-numbers.rakutest"
],
"example": [
".meta/solutions/ArmstrongNumbers.rakumod"
".meta/solutions/lib/ArmstrongNumbers.rakumod"
]
},
"blurb": "Determine if a number is an Armstrong number.",
Expand Down
6 changes: 3 additions & 3 deletions exercises/practice/atbash-cipher/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
],
"files": {
"solution": [
"AtbashCipher.rakumod"
"lib/AtbashCipher.rakumod"
],
"test": [
"atbash-cipher.rakutest"
"t/atbash-cipher.rakutest"
],
"example": [
".meta/solutions/AtbashCipher.rakumod"
".meta/solutions/lib/AtbashCipher.rakumod"
]
},
"blurb": "Create an implementation of the atbash cipher, an ancient encryption system created in the Middle East.",
Expand Down
6 changes: 3 additions & 3 deletions exercises/practice/beer-song/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"authors": ["m-dango"],
"files": {
"solution": [
"BeerSong.rakumod"
"lib/BeerSong.rakumod"
],
"test": [
"beer-song.rakutest"
"t/beer-song.rakutest"
],
"example": [
".meta/solutions/BeerSong.rakumod"
".meta/solutions/lib/BeerSong.rakumod"
]
},
"blurb": "Produce the lyrics to that beloved classic, that field-trip favorite: 99 Bottles of Beer on the Wall.",
Expand Down
6 changes: 3 additions & 3 deletions exercises/practice/binary-search-tree/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
],
"files": {
"solution": [
"BinarySearchTree.rakumod"
"lib/BinarySearchTree.rakumod"
],
"test": [
"binary-search-tree.rakutest"
"t/binary-search-tree.rakutest"
],
"example": [
".meta/solutions/BinarySearchTree.rakumod"
".meta/solutions/lib/BinarySearchTree.rakumod"
]
},
"blurb": "Insert and search for numbers in a binary tree.",
Expand Down
6 changes: 3 additions & 3 deletions exercises/practice/binary-search/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
],
"files": {
"solution": [
"BinarySearch.rakumod"
"lib/BinarySearch.rakumod"
],
"test": [
"binary-search.rakutest"
"t/binary-search.rakutest"
],
"example": [
".meta/solutions/BinarySearch.rakumod"
".meta/solutions/lib/BinarySearch.rakumod"
]
},
"blurb": "Implement a binary search algorithm.",
Expand Down
6 changes: 3 additions & 3 deletions exercises/practice/bob/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
],
"files": {
"solution": [
"Bob.rakumod"
"lib/Bob.rakumod"
],
"test": [
"bob.rakutest"
"t/bob.rakutest"
],
"example": [
".meta/solutions/Bob.rakumod"
".meta/solutions/lib/Bob.rakumod"
]
},
"blurb": "Bob is a lackadaisical teenager. In conversation, his responses are very limited.",
Expand Down
6 changes: 3 additions & 3 deletions exercises/practice/book-store/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
],
"files": {
"solution": [
"BookStore.rakumod"
"lib/BookStore.rakumod"
],
"test": [
"book-store.rakutest"
"t/book-store.rakutest"
],
"example": [
".meta/solutions/BookStore.rakumod"
".meta/solutions/lib/BookStore.rakumod"
]
},
"blurb": "To try and encourage more sales of different books from a popular 5 book series, a bookshop has decided to offer discounts of multiple-book purchases.",
Expand Down
6 changes: 3 additions & 3 deletions exercises/practice/bottle-song/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
],
"files": {
"solution": [
"BottleSong.rakumod"
"lib/BottleSong.rakumod"
],
"test": [
"bottle-song.rakutest"
"t/bottle-song.rakutest"
],
"example": [
".meta/solutions/BottleSong.rakumod"
".meta/solutions/lib/BottleSong.rakumod"
]
},
"blurb": "Produce the lyrics to the popular children's repetitive song: Ten Green Bottles.",
Expand Down
6 changes: 3 additions & 3 deletions exercises/practice/clock/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
],
"files": {
"solution": [
"Clock.rakumod"
"lib/Clock.rakumod"
],
"test": [
"clock.rakutest"
"t/clock.rakutest"
],
"example": [
".meta/solutions/Clock.rakumod"
".meta/solutions/lib/Clock.rakumod"
]
},
"blurb": "Implement a clock that handles times without dates.",
Expand Down
6 changes: 3 additions & 3 deletions exercises/practice/collatz-conjecture/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
],
"files": {
"solution": [
"CollatzConjecture.rakumod"
"lib/CollatzConjecture.rakumod"
],
"test": [
"collatz-conjecture.rakutest"
"t/collatz-conjecture.rakutest"
],
"example": [
".meta/solutions/CollatzConjecture.rakumod"
".meta/solutions/lib/CollatzConjecture.rakumod"
]
},
"blurb": "Calculate the number of steps to reach 1 using the Collatz conjecture.",
Expand Down
6 changes: 3 additions & 3 deletions exercises/practice/crypto-square/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
],
"files": {
"solution": [
"CryptoSquare.rakumod"
"lib/CryptoSquare.rakumod"
],
"test": [
"crypto-square.rakutest"
"t/crypto-square.rakutest"
],
"example": [
".meta/solutions/CryptoSquare.rakumod"
".meta/solutions/lib/CryptoSquare.rakumod"
]
},
"blurb": "Implement the classic method for composing secret messages called a square code.",
Expand Down
6 changes: 3 additions & 3 deletions exercises/practice/darts/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
],
"files": {
"solution": [
"Darts.rakumod"
"lib/Darts.rakumod"
],
"test": [
"darts.rakutest"
"t/darts.rakutest"
],
"example": [
".meta/solutions/Darts.rakumod"
".meta/solutions/lib/Darts.rakumod"
]
},
"blurb": "Write a function that returns the earned points in a single toss of a Darts game.",
Expand Down
6 changes: 3 additions & 3 deletions exercises/practice/diamond/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"contributors": ["util"],
"files": {
"solution": [
"Diamond.rakumod"
"lib/Diamond.rakumod"
],
"test": [
"diamond.rakutest"
"t/diamond.rakutest"
],
"example": [
".meta/solutions/Diamond.rakumod"
".meta/solutions/lib/Diamond.rakumod"
]
},
"blurb": "Given a letter, print a diamond starting with 'A' with the supplied letter at the widest point.",
Expand Down
6 changes: 3 additions & 3 deletions exercises/practice/difference-of-squares/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
],
"files": {
"solution": [
"DifferenceOfSquares.rakumod"
"lib/DifferenceOfSquares.rakumod"
],
"test": [
"difference-of-squares.rakutest"
"t/difference-of-squares.rakutest"
],
"example": [
".meta/solutions/DifferenceOfSquares.rakumod"
".meta/solutions/lib/DifferenceOfSquares.rakumod"
]
},
"blurb": "Find the difference between the square of the sum and the sum of the squares of the first N natural numbers.",
Expand Down
6 changes: 3 additions & 3 deletions exercises/practice/etl/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
],
"files": {
"solution": [
"ETL.rakumod"
"lib/ETL.rakumod"
],
"test": [
"etl.rakutest"
"t/etl.rakutest"
],
"example": [
".meta/solutions/ETL.rakumod"
".meta/solutions/lib/ETL.rakumod"
]
},
"blurb": "Change the data format for scoring a game to more easily add other languages.",
Expand Down
6 changes: 3 additions & 3 deletions exercises/practice/flatten-array/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
],
"files": {
"solution": [
"FlattenArray.rakumod"
"lib/FlattenArray.rakumod"
],
"test": [
"flatten-array.rakutest"
"t/flatten-array.rakutest"
],
"example": [
".meta/solutions/FlattenArray.rakumod"
".meta/solutions/lib/FlattenArray.rakumod"
]
},
"blurb": "Take a nested list and return a single list with all values except nil/null.",
Expand Down
Loading

0 comments on commit 0ec0e4c

Please sign in to comment.