Skip to content

Commit 54d676a

Browse files
authored
Fix JSON file formatting (exercism#784)
1 parent 90694df commit 54d676a

File tree

75 files changed

+145
-102
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+145
-102
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"blurb": "Convert a long phrase to its acronym.",
32
"authors": [
43
"PseudoCodeNerd"
54
],
@@ -17,6 +16,7 @@
1716
".meta/example.jl"
1817
]
1918
},
19+
"blurb": "Convert a long phrase to its acronym.",
2020
"source": "Julien Vanier",
2121
"source_url": "https://github.com/monkbroc"
2222
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"blurb": "Convert a number, represented as a sequence of digits in one base, to any other base.",
32
"authors": [
43
"serialhex"
54
],
@@ -17,5 +16,6 @@
1716
"example": [
1817
".meta/example.jl"
1918
]
20-
}
19+
},
20+
"blurb": "Convert a number, represented as a sequence of digits in one base, to any other base."
2121
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"blurb": "Given a person's allergy score, determine whether or not they're allergic to a given item, and their full list of allergies.",
32
"authors": [
43
"DarkoGNU"
54
],
@@ -18,6 +17,7 @@
1817
".meta/example.jl"
1918
]
2019
},
20+
"blurb": "Given a person's allergy score, determine whether or not they're allergic to a given item, and their full list of allergies.",
2121
"source": "Exercise by the JumpstartLab team for students at The Turing School of Software and Design.",
2222
"source_url": "https://turing.edu"
2323
}
Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
11
{
2-
"blurb": "Write a function to solve alphametics puzzles.",
3-
"authors": [
4-
"SaschaMann",
5-
"cmcaine"
2+
"authors": [
3+
"SaschaMann",
4+
"cmcaine"
5+
],
6+
"files": {
7+
"solution": [
8+
"alphametics.jl"
69
],
7-
"contributors": [],
8-
"files": {
9-
"solution": [
10-
"alphametics.jl"
11-
],
12-
"test": [
13-
"runtests.jl"
14-
],
15-
"example": [
16-
".meta/example.jl"
17-
],
18-
"editor" : [
19-
"permutations.jl"
20-
]
21-
}
10+
"test": [
11+
"runtests.jl"
12+
],
13+
"example": [
14+
".meta/example.jl"
15+
],
16+
"editor": [
17+
"permutations.jl"
18+
]
19+
},
20+
"blurb": "Write a function to solve alphametics puzzles."
2221
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"blurb": "Given a word and a list of possible anagrams, select the correct sublist.",
32
"authors": [
43
"andrej-makarov-skrt"
54
],
@@ -18,6 +17,7 @@
1817
".meta/example.jl"
1918
]
2019
},
20+
"blurb": "Given a word and a list of possible anagrams, select the correct sublist.",
2121
"source": "Inspired by the Extreme Startup game",
2222
"source_url": "https://github.com/rchatley/extreme_startup"
2323
}

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
{
2-
"blurb": "Determine if a number is an Armstrong number.",
32
"authors": [
43
"SaschaMann"
54
],
6-
"contributors": [],
75
"files": {
86
"solution": [
97
"armstrong-numbers.jl"
@@ -15,6 +13,7 @@
1513
".meta/example.jl"
1614
]
1715
},
16+
"blurb": "Determine if a number is an Armstrong number.",
1817
"source": "Wikipedia",
1918
"source_url": "https://en.wikipedia.org/wiki/Narcissistic_number"
2019
}
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
22
"introduction": {
3-
"authors": ["cmcaine", "saschamann"]
3+
"authors": [
4+
"cmcaine",
5+
"saschamann"
6+
]
47
}
58
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"blurb": "Create an implementation of the atbash cipher, an ancient encryption system created in the Middle East.",
32
"authors": [
43
"andrej-makarov-skrt"
54
],
@@ -19,6 +18,7 @@
1918
".meta/example.jl"
2019
]
2120
},
21+
"blurb": "Create an implementation of the atbash cipher, an ancient encryption system created in the Middle East.",
2222
"source": "Wikipedia",
2323
"source_url": "https://en.wikipedia.org/wiki/Atbash"
2424
}

exercises/practice/binary-search/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"blurb": "Implement a binary search algorithm.",
32
"authors": [
43
"SaschaMann"
54
],
@@ -17,6 +16,7 @@
1716
".meta/example.jl"
1817
]
1918
},
19+
"blurb": "Implement a binary search algorithm.",
2020
"source": "Wikipedia",
2121
"source_url": "https://en.wikipedia.org/wiki/Binary_search_algorithm"
2222
}
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{
22
"introduction": {
3-
"authors": ["cmcaine"]
3+
"authors": [
4+
"cmcaine"
5+
]
46
}
57
}

exercises/practice/bob/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"blurb": "Bob is a lackadaisical teenager. In conversation, his responses are very limited.",
32
"authors": [
43
"SaschaMann"
54
],
@@ -18,6 +17,7 @@
1817
".meta/example.jl"
1918
]
2019
},
20+
"blurb": "Bob is a lackadaisical teenager. In conversation, his responses are very limited.",
2121
"source": "Inspired by the 'Deaf Grandma' exercise in Chris Pine's Learn to Program tutorial.",
2222
"source_url": "https://pine.fm/LearnToProgram/?Chapter=06"
2323
}

exercises/practice/circular-buffer/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"blurb": "A data structure that uses a single, fixed-size buffer as if it were connected end-to-end.",
32
"authors": [
43
"vyu"
54
],
@@ -17,6 +16,7 @@
1716
".meta/example.jl"
1817
]
1918
},
19+
"blurb": "A data structure that uses a single, fixed-size buffer as if it were connected end-to-end.",
2020
"source": "Wikipedia",
2121
"source_url": "https://en.wikipedia.org/wiki/Circular_buffer"
2222
}
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
22
"introduction": {
3-
"authors": ["cmcaine", "saschamann"]
3+
"authors": [
4+
"cmcaine",
5+
"saschamann"
6+
]
47
}
58
}

exercises/practice/clock/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"blurb": "Implement a clock that handles times without dates.",
32
"authors": [
43
"SaschaMann"
54
],
@@ -17,5 +16,6 @@
1716
".meta/example.jl"
1817
]
1918
},
19+
"blurb": "Implement a clock that handles times without dates.",
2020
"source": "Pairing session with Erin Drummond"
2121
}

exercises/practice/collatz-conjecture/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"blurb": "Calculate the number of steps to reach 1 using the Collatz conjecture.",
32
"authors": [
43
"SaschaMann"
54
],
@@ -17,6 +16,7 @@
1716
".meta/example.jl"
1817
]
1918
},
19+
"blurb": "Calculate the number of steps to reach 1 using the Collatz conjecture.",
2020
"source": "An unsolved problem in mathematics named after mathematician Lothar Collatz",
2121
"source_url": "https://en.wikipedia.org/wiki/3x_%2B_1_problem"
2222
}

exercises/practice/complex-numbers/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"blurb": "Implement complex numbers.",
32
"authors": [
43
"SaschaMann"
54
],
@@ -17,6 +16,7 @@
1716
".meta/example.jl"
1817
]
1918
},
19+
"blurb": "Implement complex numbers.",
2020
"source": "Wikipedia",
2121
"source_url": "https://en.wikipedia.org/wiki/Complex_number"
2222
}
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
{
2-
"blurb": "Create a custom set type.",
32
"authors": [
43
"SaschaMann"
54
],
6-
"contributors": [],
75
"files": {
86
"solution": [
97
"custom-set.jl"
@@ -14,5 +12,6 @@
1412
"example": [
1513
".meta/example.jl"
1614
]
17-
}
15+
},
16+
"blurb": "Create a custom set type."
1817
}

exercises/practice/darts/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"blurb": "Write a function that returns the earned points in a single toss of a Darts game.",
32
"authors": [
43
"vyu"
54
],
@@ -17,5 +16,6 @@
1716
".meta/example.jl"
1817
]
1918
},
19+
"blurb": "Write a function that returns the earned points in a single toss of a Darts game.",
2020
"source": "Inspired by an exercise created by a professor Della Paolera in Argentina"
2121
}
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
22
"introduction": {
3-
"authors": ["cmcaine", "saschamann"]
3+
"authors": [
4+
"cmcaine",
5+
"saschamann"
6+
]
47
}
58
}

exercises/practice/difference-of-squares/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"blurb": "Find the difference between the square of the sum and the sum of the squares of the first N natural numbers.",
32
"authors": [
43
"SaschaMann"
54
],
@@ -18,6 +17,7 @@
1817
".meta/example.jl"
1918
]
2019
},
20+
"blurb": "Find the difference between the square of the sum and the sum of the squares of the first N natural numbers.",
2121
"source": "Problem 6 at Project Euler",
2222
"source_url": "https://projecteuler.net/problem=6"
2323
}
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{
22
"introduction": {
3-
"authors": ["cmcaine"]
3+
"authors": [
4+
"cmcaine"
5+
]
46
}
57
}

exercises/practice/etl/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"blurb": "Change the data format for scoring a game to more easily add other languages.",
32
"authors": [
43
"andrej-makarov-skrt"
54
],
@@ -19,6 +18,7 @@
1918
".meta/example.jl"
2019
]
2120
},
21+
"blurb": "Change the data format for scoring a game to more easily add other languages.",
2222
"source": "Based on an exercise by the JumpstartLab team for students at The Turing School of Software and Design.",
2323
"source_url": "https://turing.edu"
2424
}

exercises/practice/gigasecond/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"blurb": "Given a moment, determine the moment that would be after a gigasecond has passed.",
32
"authors": [
43
"andrej-makarov-skrt"
54
],
@@ -18,6 +17,7 @@
1817
".meta/example.jl"
1918
]
2019
},
20+
"blurb": "Given a moment, determine the moment that would be after a gigasecond has passed.",
2121
"source": "Chapter 9 in Chris Pine's online Learn to Program tutorial.",
2222
"source_url": "https://pine.fm/LearnToProgram/?Chapter=09"
2323
}

exercises/practice/grains/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"blurb": "Calculate the number of grains of wheat on a chessboard given that the number on each square doubles.",
32
"authors": [
43
"HarrisonGrodin"
54
],
@@ -18,6 +17,7 @@
1817
".meta/example.jl"
1918
]
2019
},
20+
"blurb": "Calculate the number of grains of wheat on a chessboard given that the number on each square doubles.",
2121
"source": "The CodeRanch Cattle Drive, Assignment 6",
2222
"source_url": "https://coderanch.com/wiki/718824/Grains"
2323
}
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{
22
"introduction": {
3-
"authors": ["cmcaine"]
3+
"authors": [
4+
"cmcaine"
5+
]
46
}
57
}

exercises/practice/hamming/.meta/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"blurb": "Calculate the Hamming difference between two DNA strands.",
32
"authors": [
43
"SaschaMann"
54
],
@@ -18,6 +17,7 @@
1817
".meta/example.jl"
1918
]
2019
},
20+
"blurb": "Calculate the Hamming difference between two DNA strands.",
2121
"source": "The Calculating Point Mutations problem at Rosalind",
2222
"source_url": "https://rosalind.info/problems/hamm/"
2323
}

exercises/practice/hello-world/.meta/config.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
{
2-
"blurb": "Exercism's classic introductory exercise. Just say \"Hello, World!\".",
32
"authors": [
43
"SaschaMann"
54
],
6-
"contributors": [],
75
"files": {
86
"solution": [
97
"hello-world.jl"
@@ -15,6 +13,7 @@
1513
".meta/example.jl"
1614
]
1715
},
16+
"blurb": "Exercism's classic introductory exercise. Just say \"Hello, World!\".",
1817
"source": "This is an exercise to introduce users to using Exercism",
1918
"source_url": "https://en.wikipedia.org/wiki/%22Hello,_world!%22_program"
2019
}

0 commit comments

Comments
 (0)