Skip to content

Commit

Permalink
collatz-conjecture: add tags to approaches
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom committed Oct 4, 2023
1 parent 0099efd commit be98a38
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions exercises/practice/collatz-conjecture/.approaches/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
"blurb": "Use a while loop to find the number of steps.",
"authors": [
"erikschierboom"
]
],
"tags": {
"all": ["construct:while-loop"]
}
},
{
"uuid": "8c7199ed-d74d-4e3d-b9d0-5f8595597528",
Expand All @@ -21,7 +24,10 @@
"blurb": "Use recursion to find the number of steps.",
"authors": [
"erikschierboom"
]
],
"tags": {
"all": ["technique:recursion"]
}
},
{
"uuid": "4f91abfb-4c83-4e6d-84bc-bd08211d34d6",
Expand All @@ -30,7 +36,10 @@
"blurb": "Use a (lazy) sequence and count its elements to find the number of steps.",
"authors": [
"erikschierboom"
]
],
"tags": {
"all": ["uses:Enumerable.Count", "uses:yield"]
}
}
]
}

0 comments on commit be98a38

Please sign in to comment.