用clojure解決 euler problem 2

問題描述:

 

Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be:

1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ...

By considering the terms in the Fibonacci sequence whose values do not exceed four million, find the sum of the even-valued terms.

解決方案:

(ns euler-problem-2.core)
(defn fibonacci-even-sum 
  [max-num]
  (loop
      [n1 1, n2 2, sum 0]
    (if (< n1  max-num)
       (if (even? n1)
         (recur n2 (+ n1 n2) (+ sum n1))
         (recur n2 (+ n1 n2)  sum) )
       sum )))
(fibonacci-even-sum 4000000)
"Elapsed time: 0.201702 msecs"

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章