Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
既存の 2 つのリストで構成される新しいリストを作成しようとしています。基本的にaがリストで がリストの場合、 の要素の後にの要素が続くbList を作りたいと思います。どんな助けでも大歓迎です!cab
a
b
c
concat関数を探しています:
(concat a b)
例えば:
(concat '(1 2) '(2 3 4)) :> (1 2 2 3 4)