Skip to content

Instantly share code, notes, and snippets.

@NZKoz
Created July 29, 2010 00:29
Show Gist options
  • Select an option

  • Save NZKoz/496858 to your computer and use it in GitHub Desktop.

Select an option

Save NZKoz/496858 to your computer and use it in GitHub Desktop.
class Array
def pop_rand
delete(rand(size))
end
end
arr = (1..500).to_a
4.times do
puts arr.pop_rand
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment