advanced code snippet search
ef on 05/28/12
Logarithm log2
05/28/12 06:25pm
Implementation of base2 logarithm
(defn log2 [n] (/ (Math/log n) (Math/log 2)))
Report this snippet Tweet
Comment:
You need to login to post a comment.