exercism / elm-analyzer

GNU Affero General Public License v3.0
1 stars 4 forks source link

Write analysis for practice exercise `list-ops` #25

Closed jiegillet closed 11 months ago

jiegillet commented 2 years ago

The exercise description says:

In functional languages list operations like length, map, and reduce are very common. Implement a series of basic list operations, without using existing functions.

So we should make sure no List function is used, only recursion and pattern matching.