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

clojure 乘法口诀表

时间:2014-12-26 18:30:10      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:

(defn kj [x]
  (letfn [(f [x y] (format "%d*%d=%d" x y (* x y)))
  (g [c] (clojure.string/join " " (map #(f % (count c)) c)))
  (t [] (map #(range 1 (inc %)) (range 1 (inc x))))]
    (let [t (t)] (pprint (map g t)))))

(kj 9)

clojure 乘法口诀表

标签:

原文地址:http://www.cnblogs.com/clojure-chaos/p/4187013.html

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