Skip to content

Instantly share code, notes, and snippets.

@pogin503
Created May 12, 2012 05:28
Show Gist options
  • Select an option

  • Save pogin503/2664339 to your computer and use it in GitHub Desktop.

Select an option

Save pogin503/2664339 to your computer and use it in GitHub Desktop.
lisp勉強跡地
(defun my-flatten (lst)
(cond ((atom lst) lst)
((listp (car lst))
(append (my-flatten (car lst)) (my-flatten (cdr lst))))
(t (append (list (car lst)) (my-flatten (cdr lst))))
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment