Skip to content

Commit

Permalink
🤖 Sync exercise files keys based on file path patterns (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom committed Apr 7, 2021
1 parent 528ad00 commit 1f4a48b
Show file tree
Hide file tree
Showing 10 changed files with 90 additions and 30 deletions.
12 changes: 9 additions & 3 deletions exercises/practice/accumulate/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.vb"
],
"test": [
"AccumulateTest.vb"
],
"example": [
"Example.vb"
]
},
"source": "Conversation with James Edward Gray II",
"source_url": "https://twitter.com/jeg2"
Expand Down
12 changes: 9 additions & 3 deletions exercises/practice/allergies/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.vb"
],
"test": [
"AllergiesTest.vb"
],
"example": [
"Example.vb"
]
},
"source": "Jumpstart Lab Warm-up",
"source_url": "http://jumpstartlab.com"
Expand Down
12 changes: 9 additions & 3 deletions exercises/practice/anagram/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.vb"
],
"test": [
"AnagramTest.vb"
],
"example": [
"Example.vb"
]
},
"source": "Inspired by the Extreme Startup game",
"source_url": "https://github.com/rchatley/extreme_startup"
Expand Down
12 changes: 9 additions & 3 deletions exercises/practice/atbash-cipher/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
"AtbashCipher.vb"
],
"test": [
"AtbashCipherTest.vb"
],
"example": [
"Example.vb"
]
},
"source": "Wikipedia",
"source_url": "http://en.wikipedia.org/wiki/Atbash"
Expand Down
12 changes: 9 additions & 3 deletions exercises/practice/binary/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@
"blurb": "Convert a binary number, represented as a string (e.g. '101010'), to its decimal equivalent using first principles",
"authors": [],
"files": {
"solution": [],
"test": [],
"example": []
"solution": [
"Binary.vb"
],
"test": [
"BinaryTest.vb"
],
"example": [
"Example.vb"
]
},
"source": "All of Computer Science",
"source_url": "http://www.wolframalpha.com/input/?i=binary&a=*C.binary-_*MathWorld-"
Expand Down
12 changes: 9 additions & 3 deletions exercises/practice/bob/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@
"blurb": "Bob is a lackadaisical teenager. In conversation, his responses are very limited.",
"authors": [],
"files": {
"solution": [],
"test": [],
"example": []
"solution": [
"Bob.vb"
],
"test": [
"BobTest.vb"
],
"example": [
"Example.vb"
]
},
"source": "Inspired by the 'Deaf Grandma' exercise in Chris Pine's Learn to Program tutorial.",
"source_url": "http://pine.fm/LearnToProgram/?Chapter=06"
Expand Down
12 changes: 9 additions & 3 deletions exercises/practice/crypto-square/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@
"blurb": "Implement the classic method for composing secret messages called a square code.",
"authors": [],
"files": {
"solution": [],
"test": [],
"example": []
"solution": [
"CryptoSquare.vb"
],
"test": [
"CryptoSquareTest.vb"
],
"example": [
"Example.vb"
]
},
"source": "J Dalbey's Programming Practice problems",
"source_url": "http://users.csc.calpoly.edu/~jdalbey/103/Projects/ProgrammingPractice.html"
Expand Down
12 changes: 9 additions & 3 deletions exercises/practice/hello-world/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@
"blurb": "The classical introductory exercise. Just say \"Hello, World!\"",
"authors": [],
"files": {
"solution": [],
"test": [],
"example": []
"solution": [
"HelloWorld.vb"
],
"test": [
"HelloWorldTest.vb"
],
"example": [
"Example.vb"
]
},
"source": "This is an exercise to introduce users to using Exercism",
"source_url": "http://en.wikipedia.org/wiki/%22Hello,_world!%22_program"
Expand Down
12 changes: 9 additions & 3 deletions exercises/practice/reverse-string/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@
"blurb": "Reverse a string",
"authors": [],
"files": {
"solution": [],
"test": [],
"example": []
"solution": [
"ReverseString.vb"
],
"test": [
"ReverseStringTest.vb"
],
"example": [
"Example.vb"
]
},
"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"
Expand Down
12 changes: 9 additions & 3 deletions exercises/practice/two-fer/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@
"blurb": "Create a sentence of the form \"One for X, one for me.\"",
"authors": [],
"files": {
"solution": [],
"test": [],
"example": []
"solution": [
"TwoFer.vb"
],
"test": [
"TwoFerTest.vb"
],
"example": [
"Example.vb"
]
},
"source_url": "https://github.com/exercism/problem-specifications/issues/757"
}

0 comments on commit 1f4a48b

Please sign in to comment.