exercism-elixir/language-list/HINTS.md
2022-01-31 09:28:22 -04:00

2.2 KiB

Hints

General

1. Define a function to return an empty language list

2. Define a function to add a language to the list

3. Define a function to remove a language from the list

4. Define a function to return the first item in the list

5. Define a function to return how many languages are in the list

6. Define a function to determine if the list is exciting

  • You need to define a named function with 1 argument. The first argument is a list of language string-literals.
  • Your function should return a boolean value indicating whether "Elixir" is a member of the list. Elixir provides a function to test list membership.