6

我对这个问题的回答感觉太像C 中的这些解决方案了

有没有人有任何建议可以让这个更 lispy?

(use 'clojure.test)
(:import 'java.lang.Math)

(with-test
  (defn find-triplet-product
    ([target] (find-triplet-product 1 1 target))
    ([a b target]
      (let [c (Math/sqrt (+ (* a a) (* b b)))]
        (let [sum (+ a b c)]
          (cond 
            (> a target) "ERROR"
            (= sum target) (reduce * (list a b (int c)))
            (> sum target) (recur (inc a) 1 target)
            (< sum target) (recur a (inc b) target))))))

  (is (= (find-triplet-product 1000) 31875000)))
4

2 回答 2

7

clojure- eluer -project有几个程序供您参考。

于 2010-06-03T15:22:57.380 回答
4

我个人使用了这个算法(我发现这里有描述):

(defn generate-triple [n]
  (loop [m (inc n)]
    (let [a (- (* m m) (* n n))
          b (* 2 (* m n)) c (+ (* m m) (* n n)) sum (+ a b c)]
      (if (>= sum 1000)
        [a b c sum]
        (recur (inc m))))))

对我来说似乎不那么复杂:-)

于 2010-06-03T15:24:16.857 回答