Skip to content

Instantly share code, notes, and snippets.

@ihodes
Created August 7, 2010 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ihodes/512980 to your computer and use it in GitHub Desktop.
Save ihodes/512980 to your computer and use it in GitHub Desktop.
(defn rpn
[& exprs]
(cond (one? (count exprs)) (first exprs)
(zero? (count exprs)) 0
:else
(let [nums (take-while number? exprs)
etc (drop (count nums) exprs)
op (first etc)]
(recur (cons (apply op nums)
(rest etc))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment