Guest User

Untitled

a guest
Sep 13th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (fn [n [& seqN]]
  2.   (let [moves (mod n (count seqN))]
  3.     (concat
  4.       (drop moves seqN)
  5.       (take moves seqN))))))
Add Comment
Please, Sign In to add comment