Skip to content

Instantly share code, notes, and snippets.

@brandonpittman
Created September 20, 2017 00:39
Show Gist options
  • Save brandonpittman/70f3f76bd96628e3087b31c1711c6f2e to your computer and use it in GitHub Desktop.
Save brandonpittman/70f3f76bd96628e3087b31c1711c6f2e to your computer and use it in GitHub Desktop.
def even_length?([]), do: true
def even_length?([_]), do: false
def even_length?([ _, _ | t ]), do: even_length?(t)
@pragdave
Copy link

yup, looks good.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment