Skip to content

Commit 34198c2

Browse files
committed
Adjust config.json to return exercise difficulties to one of 1, 4, 7, 10.
Performed with the following command line: ```shell jq '.exercises |= map( if .difficulty == 3 then .difficulty=4 elif .difficulty == 6 then .difficulty=7 else . end )' config.json > config.json.new && \ diff config.json config.json.new ; \ mv config.json.new config.json ```
1 parent f7d444a commit 34198c2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

config.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@
200200
"slug": "saddle-points",
201201
"core": false,
202202
"unlocked_by": null,
203-
"difficulty": 3,
203+
"difficulty": 4,
204204
"topics": [
205205
"vectors",
206206
"iterators"
@@ -211,7 +211,7 @@
211211
"slug": "isogram",
212212
"core": false,
213213
"unlocked_by": null,
214-
"difficulty": 3,
214+
"difficulty": 4,
215215
"topics": [
216216
"chars",
217217
"iterators",
@@ -772,7 +772,7 @@
772772
"slug": "poker",
773773
"core": false,
774774
"unlocked_by": null,
775-
"difficulty": 6,
775+
"difficulty": 7,
776776
"topics": [
777777
"lifetimes",
778778
"struct",
@@ -786,7 +786,7 @@
786786
"slug": "decimal",
787787
"core": false,
788788
"unlocked_by": null,
789-
"difficulty": 6,
789+
"difficulty": 7,
790790
"topics": [
791791
"struct",
792792
"traits",

0 commit comments

Comments
 (0)