Skip to content

Commit 5b3ddf1

Browse files
ErikSchierboomBethanyG
authored andcommitted
Sync file paths in .meta/config.json with track file path patterns
1 parent f9f3c90 commit 5b3ddf1

128 files changed

Lines changed: 1152 additions & 384 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+
"accumulate.py"
7+
],
8+
"test": [
9+
"accumulate_test.py"
10+
],
11+
"example": [
12+
".meta/example.py"
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+
"acronym.py"
7+
],
8+
"test": [
9+
"acronym_test.py"
10+
],
11+
"example": [
12+
".meta/example.py"
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+
"affine_cipher.py"
7+
],
8+
"test": [
9+
"affine_cipher_test.py"
10+
],
11+
"example": [
12+
".meta/example.py"
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+
"all_your_base.py"
7+
],
8+
"test": [
9+
"all_your_base_test.py"
10+
],
11+
"example": [
12+
".meta/example.py"
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+
"allergies.py"
7+
],
8+
"test": [
9+
"allergies_test.py"
10+
],
11+
"example": [
12+
".meta/example.py"
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+
"alphametics.py"
7+
],
8+
"test": [
9+
"alphametics_test.py"
10+
],
11+
"example": [
12+
".meta/example.py"
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+
"anagram.py"
7+
],
8+
"test": [
9+
"anagram_test.py"
10+
],
11+
"example": [
12+
".meta/example.py"
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+
"armstrong_numbers.py"
7+
],
8+
"test": [
9+
"armstrong_numbers_test.py"
10+
],
11+
"example": [
12+
".meta/example.py"
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+
"atbash_cipher.py"
7+
],
8+
"test": [
9+
"atbash_cipher_test.py"
10+
],
11+
"example": [
12+
".meta/example.py"
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+
"bank_account.py"
7+
],
8+
"test": [
9+
"bank_account_test.py"
10+
],
11+
"example": [
12+
".meta/example.py"
13+
]
814
}
915
}

0 commit comments

Comments
 (0)