Skip to content

Commit 73c4f72

Browse files
authored
Configlet sync and format (#800)
1 parent 9f1f161 commit 73c4f72

File tree

132 files changed

+445
-247
lines changed

Some content is hidden

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

132 files changed

+445
-247
lines changed

exercises/concept/basics/.meta/config.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{
2-
"blurb": "TODO: add blurb for basics exercise",
32
"authors": [
43
"stillleben"
54
],
6-
"forked_from": [
7-
"csharp/lucians-luscious-lasagna"
8-
],
95
"files": {
106
"solution": [
117
"src/main/scala/Lasagna.scala"
@@ -19,5 +15,9 @@
1915
"invalidator": [
2016
"build.sbt"
2117
]
22-
}
18+
},
19+
"forked_from": [
20+
"csharp/lucians-luscious-lasagna"
21+
],
22+
"blurb": "TODO: add blurb for basics exercise"
2323
}

exercises/practice/accumulate/.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 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.",
32
"authors": [
43
"ricemery"
54
],
@@ -23,6 +22,7 @@
2322
"build.sbt"
2423
]
2524
},
25+
"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.",
2626
"source": "Conversation with James Edward Gray II",
2727
"source_url": "http://graysoftinc.com/"
2828
}
Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,27 @@
11
{
22
"introduction": {
3-
"authors": ["bobahop"],
4-
"contributors": []
3+
"authors": [
4+
"bobahop"
5+
]
56
},
67
"approaches": [
78
{
89
"uuid": "83f3d79b-fc07-4160-87e5-e11e21d31ac2",
910
"slug": "split",
1011
"title": "split",
1112
"blurb": "Use split to get the words.",
12-
"authors": ["bobahop"]
13+
"authors": [
14+
"bobahop"
15+
]
1316
},
1417
{
1518
"uuid": "986e4b72-1a7a-4684-9dd1-280537d285c8",
1619
"slug": "findallin",
1720
"title": "findAllIn",
1821
"blurb": "Use findAllIn to get the words.",
19-
"authors": ["bobahop"]
22+
"authors": [
23+
"bobahop"
24+
]
2025
}
2126
]
2227
}

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
"ricemery"
54
],
@@ -23,6 +22,7 @@
2322
"build.sbt"
2423
]
2524
},
25+
"blurb": "Convert a long phrase to its acronym.",
2626
"source": "Julien Vanier",
2727
"source_url": "https://github.com/monkbroc"
2828
}

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
"ricemery"
54
],
@@ -22,5 +21,6 @@
2221
"invalidator": [
2322
"build.sbt"
2423
]
25-
}
24+
},
25+
"blurb": "Convert a number, represented as a sequence of digits in one base, to any other base."
2626
}

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
"ricemery"
54
],
@@ -22,6 +21,7 @@
2221
"build.sbt"
2322
]
2423
},
24+
"blurb": "Given a person's allergy score, determine whether or not they're allergic to a given item, and their full list of allergies.",
2525
"source": "Exercise by the JumpstartLab team for students at The Turing School of Software and Design.",
2626
"source_url": "https://turing.edu"
2727
}

exercises/practice/alphametics/.docs/instructions.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Instructions
22

3-
Write a function to solve alphametics puzzles.
3+
Given an alphametics puzzle, find the correct solution.
44

55
[Alphametics][alphametics] is a puzzle where letters in words are replaced with numbers.
66

@@ -26,6 +26,4 @@ This is correct because every letter is replaced by a different number and the w
2626

2727
Each letter must represent a different digit, and the leading digit of a multi-digit number must not be zero.
2828

29-
Write a function to solve alphametics puzzles.
30-
3129
[alphametics]: https://en.wikipedia.org/wiki/Alphametics

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"blurb": "Write a function to solve alphametics puzzles.",
32
"authors": [
43
"abo64"
54
],
@@ -22,5 +21,6 @@
2221
"invalidator": [
2322
"build.sbt"
2423
]
25-
}
24+
},
25+
"blurb": "Given an alphametics puzzle, find the correct solution."
2626
}

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
"sgrif"
54
],
@@ -24,6 +23,7 @@
2423
"build.sbt"
2524
]
2625
},
26+
"blurb": "Given a word and a list of possible anagrams, select the correct sublist.",
2727
"source": "Inspired by the Extreme Startup game",
2828
"source_url": "https://github.com/rchatley/extreme_startup"
2929
}
Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,36 @@
11
{
22
"introduction": {
3-
"authors": ["bobahop"],
4-
"contributors": []
3+
"authors": [
4+
"bobahop"
5+
]
56
},
67
"approaches": [
78
{
89
"uuid": "b4174fe4-eef3-4f21-a4c2-69829c611bef",
910
"slug": "tostring-map-sum",
1011
"title": "toString with map and sum",
1112
"blurb": "Use toString with map and sum to return the answer.",
12-
"authors": ["bobahop"]
13+
"authors": [
14+
"bobahop"
15+
]
1316
},
1417
{
1518
"uuid": "6efcd9c6-cf20-4b01-af87-938b5afbe81b",
1619
"slug": "iterate-takewhile-last",
1720
"title": "iterate with takeWhile and last",
1821
"blurb": "Use iterate with takeWhile and last to return the answer.",
19-
"authors": ["bobahop"]
22+
"authors": [
23+
"bobahop"
24+
]
2025
},
2126
{
2227
"uuid": "70ebcc42-e087-4724-a28e-26fa26a6e3ac",
2328
"slug": "recursion",
2429
"title": "Recursion",
2530
"blurb": "Use recursion to return the answer.",
26-
"authors": ["bobahop"]
31+
"authors": [
32+
"bobahop"
33+
]
2734
}
2835
]
2936
}

0 commit comments

Comments
 (0)