Skip to content

Commit f94f292

Browse files
🤖 Sync exercise files keys based on file path patterns (exercism#1919)
1 parent db0e2df commit f94f292

120 files changed

Lines changed: 1080 additions & 360 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: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@
22
"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.",
33
"authors": [],
44
"files": {
5-
"solution": [],
6-
"test": [],
7-
"example": []
5+
"solution": [
6+
"src/main/java/Accumulate.java"
7+
],
8+
"test": [
9+
"src/test/java/AccumulateTest.java"
10+
],
11+
"example": [
12+
".meta/src/reference/java/Accumulate.java"
13+
]
814
},
915
"source": "Conversation with James Edward Gray II",
1016
"source_url": "https://twitter.com/jeg2"

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

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@
22
"blurb": "Convert a long phrase to its acronym",
33
"authors": [],
44
"files": {
5-
"solution": [],
6-
"test": [],
7-
"example": []
5+
"solution": [
6+
"src/main/java/Acronym.java"
7+
],
8+
"test": [
9+
"src/test/java/AcronymTest.java"
10+
],
11+
"example": [
12+
".meta/src/reference/java/Acronym.java"
13+
]
814
},
915
"source": "Julien Vanier",
1016
"source_url": "https://github.com/monkbroc"

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

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@
22
"blurb": "Create an implementation of the Affine cipher, an ancient encryption algorithm from the Middle East.",
33
"authors": [],
44
"files": {
5-
"solution": [],
6-
"test": [],
7-
"example": []
5+
"solution": [
6+
"src/main/java/AffineCipher.java"
7+
],
8+
"test": [
9+
"src/test/java/AffineCipherTest.java"
10+
],
11+
"example": [
12+
".meta/src/reference/java/AffineCipher.java"
13+
]
814
},
915
"source": "Wikipedia",
1016
"source_url": "http://en.wikipedia.org/wiki/Affine_cipher"

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

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,14 @@
22
"blurb": "Convert a number, represented as a sequence of digits in one base, to any other base.",
33
"authors": [],
44
"files": {
5-
"solution": [],
6-
"test": [],
7-
"example": []
5+
"solution": [
6+
"src/main/java/AllYourBase.java"
7+
],
8+
"test": [
9+
"src/test/java/AllYourBaseTest.java"
10+
],
11+
"example": [
12+
".meta/src/reference/java/AllYourBase.java"
13+
]
814
}
915
}

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

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@
22
"blurb": "Given a person's allergy score, determine whether or not they're allergic to a given item, and their full list of allergies.",
33
"authors": [],
44
"files": {
5-
"solution": [],
6-
"test": [],
7-
"example": []
5+
"solution": [
6+
"src/main/java/Allergies.java"
7+
],
8+
"test": [
9+
"src/test/java/AllergiesTest.java"
10+
],
11+
"example": [
12+
".meta/src/reference/java/Allergies.java"
13+
]
814
},
915
"source": "Jumpstart Lab Warm-up",
1016
"source_url": "http://jumpstartlab.com"

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

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,14 @@
22
"blurb": "Write a function to solve alphametics puzzles.",
33
"authors": [],
44
"files": {
5-
"solution": [],
6-
"test": [],
7-
"example": []
5+
"solution": [
6+
"src/main/java/Alphametics.java"
7+
],
8+
"test": [
9+
"src/test/java/AlphameticsTest.java"
10+
],
11+
"example": [
12+
".meta/src/reference/java/Alphametics.java"
13+
]
814
}
915
}

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

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@
22
"blurb": "Given a word and a list of possible anagrams, select the correct sublist.",
33
"authors": [],
44
"files": {
5-
"solution": [],
6-
"test": [],
7-
"example": []
5+
"solution": [
6+
"src/main/java/Anagram.java"
7+
],
8+
"test": [
9+
"src/test/java/AnagramTest.java"
10+
],
11+
"example": [
12+
".meta/src/reference/java/Anagram.java"
13+
]
814
},
915
"source": "Inspired by the Extreme Startup game",
1016
"source_url": "https://github.com/rchatley/extreme_startup"

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

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@
22
"blurb": "Determine if a number is an Armstrong number",
33
"authors": [],
44
"files": {
5-
"solution": [],
6-
"test": [],
7-
"example": []
5+
"solution": [
6+
"src/main/java/ArmstrongNumbers.java"
7+
],
8+
"test": [
9+
"src/test/java/ArmstrongNumbersTest.java"
10+
],
11+
"example": [
12+
".meta/src/reference/java/ArmstrongNumbers.java"
13+
]
814
},
915
"source": "Wikipedia",
1016
"source_url": "https://en.wikipedia.org/wiki/Narcissistic_number"

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

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@
22
"blurb": "Create an implementation of the atbash cipher, an ancient encryption system created in the Middle East.",
33
"authors": [],
44
"files": {
5-
"solution": [],
6-
"test": [],
7-
"example": []
5+
"solution": [
6+
"src/main/java/AtbashCipher.java"
7+
],
8+
"test": [
9+
"src/test/java/AtbashCipherTest.java"
10+
],
11+
"example": [
12+
".meta/src/reference/java/AtbashCipher.java"
13+
]
814
},
915
"source": "Wikipedia",
1016
"source_url": "http://en.wikipedia.org/wiki/Atbash"

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

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,14 @@
22
"blurb": "Simulate a bank account supporting opening/closing, withdraws, and deposits of money. Watch out for concurrent transactions!",
33
"authors": [],
44
"files": {
5-
"solution": [],
6-
"test": [],
7-
"example": []
5+
"solution": [
6+
"src/main/java/BankAccount.java"
7+
],
8+
"test": [
9+
"src/test/java/BankAccountTest.java"
10+
],
11+
"example": [
12+
".meta/src/reference/java/BankAccount.java"
13+
]
814
}
915
}

0 commit comments

Comments
 (0)