Skip to content

Commit

Permalink
Format configs (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
BNAndras authored Jan 27, 2024
1 parent 8d51c9d commit bb0ebde
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 22 deletions.
11 changes: 4 additions & 7 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
"test_runner": {
"average_run_time": 2
},
"checklist_issue": 6,
"files": {
"solution": [
"source/%{snake_slug}.d"
Expand All @@ -34,7 +33,6 @@
]
},
"exercises": {
"concept": [],
"practice": [
{
"slug": "armstrong-numbers",
Expand Down Expand Up @@ -469,7 +467,6 @@
}
]
},
"concepts": [],
"key_features": [
{
"title": "Expressive",
Expand Down Expand Up @@ -503,15 +500,15 @@
}
],
"tags": [
"execution_mode/compiled",
"paradigm/functional",
"paradigm/imperative",
"paradigm/object_oriented",
"platform/linux",
"platform/mac",
"platform/windows",
"typing/static",
"typing/strong",
"execution_mode/compiled",
"platform/windows",
"platform/mac",
"platform/linux",
"used_for/backends",
"used_for/cross_platform_development",
"used_for/embedded_systems",
Expand Down
9 changes: 6 additions & 3 deletions exercises/practice/hamming/.approaches/config.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
{
"introduction": {
"authors": ["bobahop"],
"contributors": []
"authors": [
"bobahop"
]
},
"approaches": [
{
"uuid": "a8b3febf-2c8b-4ad3-8169-f5b2665a5ddd",
"slug": "zip-count",
"title": "zip with count",
"blurb": "Use zip with count to return the answer.",
"authors": ["bobahop"]
"authors": [
"bobahop"
]
}
]
}
13 changes: 9 additions & 4 deletions exercises/practice/isogram/.approaches/config.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,27 @@
{
"introduction": {
"authors": ["bobahop"],
"contributors": []
"authors": [
"bobahop"
]
},
"approaches": [
{
"uuid": "dde5f357-b1f8-4079-991a-a326b0ce6e1a",
"slug": "filter-map-foreach",
"title": "filter and map with foreach",
"blurb": "Use filter and map with foreach to return the answer.",
"authors": ["bobahop"]
"authors": [
"bobahop"
]
},
{
"uuid": "92f8d92b-9d11-45cc-bbeb-faf965d51ac0",
"slug": "filter-map-fold",
"title": "filter and map with fold",
"blurb": "Use filter and map with fold to return the answer.",
"authors": ["bobahop"]
"authors": [
"bobahop"
]
}
]
}
17 changes: 12 additions & 5 deletions exercises/practice/pangram/.approaches/config.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,36 @@
{
"introduction": {
"authors": ["bobahop"],
"contributors": []
"authors": [
"bobahop"
]
},
"approaches": [
{
"uuid": "7a98843c-4dd0-4c30-962d-021141c43635",
"slug": "bitwise-filter-fold",
"title": "bitwise operations with filter and fold",
"blurb": "Use bitwise operations with filter and fold to return the answer.",
"authors": ["bobahop"]
"authors": [
"bobahop"
]
},
{
"uuid": "c9807c77-adb9-49c7-9dfc-7164d69147f8",
"slug": "all-find",
"title": "all with find",
"blurb": "Use all with find to return the answer.",
"authors": ["bobahop"]
"authors": [
"bobahop"
]
},
{
"uuid": "886a22e0-906f-4f55-95a9-76071d5f326c",
"slug": "filter-sort-uniq-count",
"title": "filter and sort with uniq and count",
"blurb": "Use filter and sort with uniq and count to return the answer.",
"authors": ["bobahop"]
"authors": [
"bobahop"
]
}
]
}
9 changes: 6 additions & 3 deletions exercises/practice/reverse-string/.approaches/config.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
{
"introduction": {
"authors": ["bobahop"],
"contributors": []
"authors": [
"bobahop"
]
},
"approaches": [
{
"uuid": "82d351a0-eb04-417c-9989-bafd61114ae2",
"slug": "bygrapheme-retro-bycodepoint-text",
"title": "byGrapheme and retro with byCodePoint and text",
"blurb": "Use byGrapheme and retro with byCodePoint and text to handle Unicode.",
"authors": ["bobahop"]
"authors": [
"bobahop"
]
}
]
}

0 comments on commit bb0ebde

Please sign in to comment.