You are viewing a single comment's thread. Return to all comments →
implementation using Common Lisp (defun f(n) (if(> n 1) (list n (f(- n 1))) ) )
(defun f(n) (if(> n 1) (list n (f(- n 1))) ) )
Seems like cookies are disabled on this browser, please enable them to open this website
Array Of N Elements
You are viewing a single comment's thread. Return to all comments →
implementation using Common Lisp
(defun f(n) (if(> n 1) (list n (f(- n 1))) ) )