Skip to content

Instantly share code, notes, and snippets.

@seungjin
Last active October 10, 2015 10:00
Show Gist options
  • Save seungjin/bcec4e8c11341a933c1d to your computer and use it in GitHub Desktop.
Save seungjin/bcec4e8c11341a933c1d to your computer and use it in GitHub Desktop.
has_element function
let rec has_element2 l e =
match l with
| [] -> false
| h::t -> h = e || has_element2 t e
;;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment