vote up 2 vote down star

I now have a problem on using "reduce" to implement my own version of copy-list. This is what I have done:

(defun my-copy-list (lst)  
  (reduce #'(lambda (x y)  
              (cons x y)) 
          lst :initial-value nil :from-end t))

However, my teacher said there is no need to use that lambda, I am confused on this. How may we achieve the same functionality without using that lambda (but must use 'reduce'). Thanks a lot.

flag

Indent your code with 4 spaces to have it placed in a code block and syntax highlighted. – thenduks Nov 23 at 22:58
2  
Not that the "syntax highlighting" on this site does anything useful for non-C-like languages :) – J Cooper Nov 23 at 23:01

2 Answers

vote up 11 vote down check

What your teacher means is that you're defining this function

(lambda (x y) (cons x y))

But there's already a function that exists to do that -- cons itself. So instead of passing your lambda as an argument to reduce, you could just pass cons.

link|flag
vote up 2 vote down

this is what cons does: it takes two values and pairs them.

this is what (lambda (x y) (cons x y)) does: it takes two values and pairs them.

link|flag

Your Answer

Get an OpenID
or
never shown

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