Skip to content

Instantly share code, notes, and snippets.

@zwang
Created October 2, 2014 04:05
Show Gist options
  • Save zwang/639a523d1911b73cb59b to your computer and use it in GitHub Desktop.
Save zwang/639a523d1911b73cb59b to your computer and use it in GitHub Desktop.
HackerRank evaluate e^x
(dotimes [n (read-string (read-line))]
(let [x (read-string (read-line)),
ex (fn [x]
(inc
(reduce +
(map #(/ (reduce * (repeat % x))
(reduce * (range 1 (inc %)))
)
(range 1 10)
)
)
)
)
]
(println
(format "%.4f"
(float
(ex x)
)
)
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment