I'd like to turn integers into lists. For example, 2245 => (2 2 4 5).
I dislike (coerce (write-to-string 2245) 'list) because it yields (#\2 #\2 #\4 #\5).
Help please?
|
I'd like to turn integers into lists. For example, 2245 => (2 2 4 5). I dislike Help please? |
|||
works well. |
|||||||
|
|
Common Lisp implementation for non-negative integers:
|
||||
|
|
An alternative loop based solution. |
|||
|
|
|
I don't really use common lisp, but I'd do it like this in Scheme. hopefully that can help?
|
|||||||||
|
|
Same as jon_darkstar but in common lisp. This fails for negative numbers, but trivial to amend.
|
|||||
|
(loop ...)?? – msandiford Apr 5 '11 at 23:42