码迷,mamicode.com
首页 > 其他好文 > 详细

[4Clojure]解题记录-#78

时间:2014-11-27 21:48:11      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:des   http   io   ar   sp   on   div   art   bs   

Reimplement Trampoline
 

Difficulty: Medium
Topics: core-functions

 

Reimplement the function described in "Intro to Trampoline".
 
(= (letfn [(triple [x] #(sub-two (* 3 x)))
          (sub-two [x] #(stop?(- x 2)))
          (stop? [x] (if (> x 50) x #(triple x)))]  (__ triple 2))  82)
 
(= (letfn [(my-even? [x] (if (zero? x) true #(my-odd? (dec x))))
          (my-odd? [x] (if (zero? x) false #(my-even? (dec x))))]
    (map (partial __ my-even?) (range 6)))  [true false true false true false])
 
解长度 41:
#(loop [t (apply % %&)] (if (fn? t) (recur (t)) t))

[4Clojure]解题记录-#78

标签:des   http   io   ar   sp   on   div   art   bs   

原文地址:http://www.cnblogs.com/zjfu/p/4127172.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!