File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -26,13 +26,14 @@ char *paths[] = {
26
26
"/beverages/alcohol/beer.c",
27
27
"/food/healthy/vegetarian/salad.txt",
28
28
"/food/healthy/fruit/blueberries.hs",
29
- "/food/unhealthy/cake.md" };
29
+ "/food/unhealthy/cake.md"
30
+ };
30
31
```
31
32
32
33
#solution dirtree.c
33
34
34
- bonus tasks:
35
- - print also non-leaf nodes via depth first, with each node indented based on
35
+ Bonus tasks:
36
+ - Print also non-leaf nodes via depth first, with each node indented based on
36
37
its tree depth. E.g:
37
38
38
39
```
45
46
bar/
46
47
```
47
48
48
- - remove the limitation for the constant number of children
49
- - print full paths of all files in the tree (hint: backpointers)
49
+ - Remove the limitation for the constant number of children.
50
+ - Print full paths of all files in the tree (hint: backpointers)
You can’t perform that action at this time.
0 commit comments