开发者

Scheme - takink list from lists

开发者 https://www.devze.com 2023-03-06 06:33 出处:网络
If I have list:((3 4 5) (2 开发者_运维技巧1 4) (4 1 3)) and I want to get only the (3 4 5) list, How can I do it?

If I have list:((3 4 5) (2 开发者_运维技巧1 4) (4 1 3)) and I want to get only the (3 4 5) list, How can I do it?

Thank you.


(car '((3 4 5) (2 1 4) (4 1 3)))

In Scheme given the example you have.

0

精彩评论

暂无评论...
验证码 换一张
取 消