-
-
Notifications
You must be signed in to change notification settings - Fork 554
Exercise topics
Peter Minten edited this page Apr 19, 2015
·
3 revisions
Topics are a rough way of describing which language/library features or techniques an exercise touches on.
An exercise has a topic if it forces the user to use techniques or language/library features or if it strongly hints at doing so.
The "YAML:" lines contain the syntax best used when using the tag in a .yml file.
Please keep the following in alphabetical order for quick lookup and add any topics to the quick reference.
YAML: recursion
Use of directly or indirectly recursive calls. E.g. foo(n)
calls foo(n-1)
.