Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
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 ...
Mountain Man's user avatar
0 votes
1 answer
62 views

Uncompressing a list with some run-length-encoded elements

Regarding the following code ...
mwal's user avatar
  • 483
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: ...
Martin Buchmann's user avatar
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 ...
Wojciech Gac's user avatar
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 ...
johnbakers's user avatar