All Questions
Tagged with common-lisp recursion
5 questions
4
votes
2
answers
125
views
Advent of Code 2015 "Not Quite Lisp", in Common Lisp
I've been toying around with random programming languages for about 15 years. I'm just more of a sysadmin type than a programmer, but I've always wanted to do programming, so here I am. I know a bit ...
0
votes
1
answer
62
views
Uncompressing a list with some run-length-encoded elements
Regarding the following code
...
2
votes
1
answer
355
views
Pairwise grouping of elements of a list
I want to group the elements in an arbitrary long list into pairs and implemented the following so far:
...
4
votes
4
answers
2k
views
Generic sequence splitter in Common Lisp
I wrote a function split-seq-by-n which accepts a sequence and a number and splits the sequence into subsequences of length n (the last subsequence getting the ...
2
votes
1
answer
168
views
Rewrite apply function to use recursion instead
Probably the hardest part of learning lisp has been to think in the "lisp way" which is elegant and impressive, but not always easy. I know that recursion is used to solve a lot of problems, and I am ...