Guest User

Untitled

a guest
May 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. class Array
  2. def shuffle
  3. copy = dup
  4. replace(map{copy.delete_at(Kernel.rand(copy.length))})
  5. end
  6. end
Add Comment
Please, Sign In to add comment