Given a seq, how do you return a seq with the same e开发者_运维知识库lements but in a random order?
(shuffle [1 2 3 4 5])
(3 2 4 5 1)
Given a seq, how do you return a seq with the same e开发者_运维知识库lements but in a random order?
(shuffle [1 2 3 4 5])
(3 2 4 5 1)
精彩评论