Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm studying the Clojure Koans:

https://github.com/functional-koans/clojure-koans/blob/master/src/koans/10_lazy_sequences.clj

I am stuck on this one:

"Iteration can be used for repetition"
  (= (repeat 100 :foo)
     (take 100 (iterate ___ :foo)))

I don't know the exact builtin function to fill in the _ blanks with, so I tried writing my own. I wrote it as a separate function as a test.

I intend this one to be: if x is a seq, then just repeat its first element. Otherwise, make it a seq.

(def f (fn [x] (if (seq? x) (cons (first x) x) (cons x '()))))

When I run it explicitly, it looks fine:

user=> (f :abc)
(:abc)
user=> (f (f :abc))
(:abc :abc)
user=> (f (f (f :abc)))
(:abc :abc :abc)

But using iterate adds an extra parenthesis:

user=> (take 1 (iterate f :abc))(:abc)
user=> (take 2 (iterate f :abc))
(:abc (:abc))
user=> (take 3 (iterate f :abc))
(:abc (:abc) (:abc :abc))

What causes this?
share|improve this question
1  
BTW, The exact builtin function is identity – status203 Sep 11 '12 at 10:18
Yes. Unfortunately I couldn't figure out the koan and looked at someone else's solution. – mparaz Sep 13 '12 at 6:37

1 Answer

up vote 2 down vote accepted

Re-read the documentation for iterate:

Returns a lazy sequence of x, (f x), (f (f x)) etc.

Use nth instead of take if you want the results of a particular iteration:

user=> (nth (iterate f :abc) 0)
:abc
user=> (nth (iterate f :abc) 1)
(:abc)
user=> (nth (iterate f :abc) 2)
(:abc :abc)
user=> (nth (iterate f :abc) 3)
(:abc :abc :abc)
share|improve this answer
Thanks. I got confused there. – mparaz Sep 9 '12 at 9:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.