Skip to content

Instantly share code, notes, and snippets.

@kindlychung
Created May 19, 2015 20:43
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 kindlychung/4745feeaec628cc8cda1 to your computer and use it in GitHub Desktop.
Save kindlychung/4745feeaec628cc8cda1 to your computer and use it in GitHub Desktop.
(defn estimate-cost [step-cost-est size y x]
(* step-cost-est
(- (+ size size) y x 2)))
(estimate-cost 900 5 0 0)
(estimate-cost 900 5 4 4)
@kindlychung
Copy link
Author

From Joy of Clojure, page 165

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