Created
September 9, 2020 18:20
-
-
Save tbl3rd/f7f9033c64db26aa5a60a694d70524ba to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn f [x n] (if (> x 1) n (recur (+ x (rand)) (+ 1 n)))) | |
(defn e [n] (reduce + (repeatedly n #(f 0.0 0)))) | |
(e 100000000) ;; 271828198 YMMV |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment