Add tags

Add tags to the following comment
#457や#462を思いつけるようになりたい。
1
2
3
4
5
6
7
8
(define (uniq lst)
  (fold
   (lambda (e l)
     (cond ((null? l) (cons e l))
           ((member e l) l)
           (else (append l (list e)))))
   '()
   lst))

Add tags

The input will be splited to tags with space.

Index

Feed

Other

Link

Pathtraq

loading...