Skip to content

Instantly share code, notes, and snippets.

@qtrfeast
Created November 14, 2008 03:45
Show Gist options
  • Select an option

  • Save qtrfeast/24770 to your computer and use it in GitHub Desktop.

Select an option

Save qtrfeast/24770 to your computer and use it in GitHub Desktop.
(defn count-atoms [L]
(cond
(not (coll? L)) 1
(empty? L) 0
(list? L) (apply + (map count-atoms L))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment