File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed
exercises/practice/collatz-conjecture/.approaches Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 12
12
"blurb" : " Use a while loop to find the number of steps." ,
13
13
"authors" : [
14
14
" erikschierboom"
15
- ]
15
+ ],
16
+ "tags" : {
17
+ "all" : [" construct:while-loop" ]
18
+ }
16
19
},
17
20
{
18
21
"uuid" : " 8c7199ed-d74d-4e3d-b9d0-5f8595597528" ,
21
24
"blurb" : " Use recursion to find the number of steps." ,
22
25
"authors" : [
23
26
" erikschierboom"
24
- ]
27
+ ],
28
+ "tags" : {
29
+ "all" : [" technique:recursion" ]
30
+ }
25
31
},
26
32
{
27
33
"uuid" : " 4f91abfb-4c83-4e6d-84bc-bd08211d34d6" ,
30
36
"blurb" : " Use a (lazy) sequence and count its elements to find the number of steps." ,
31
37
"authors" : [
32
38
" erikschierboom"
33
- ]
39
+ ],
40
+ "tags" : {
41
+ "all" : [" uses:Enumerable.Count" , " uses:yield" ]
42
+ }
34
43
}
35
44
]
36
45
}
You can’t perform that action at this time.
0 commit comments