Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know I can do this in a couple of steps, but was wondering if there is a function which can achieve this.

I want to array#sample, then remove the element which was retrieved.

share|improve this question
1  
If an answer is helpful, please use the accept checkbox to convey that to the community. – Linuxios Jun 11 '12 at 23:38

2 Answers

How about this:

array.delete_at(rand(array.length))
share|improve this answer

Linuxios's has it perfect. Here is another example:

array = %w[A B C]
item_deleted = array.delete_at(1)

Here it is in irb:

1.9.2p0 :043 > array = %w[A B C]
 => ["A", "B", "C"] 
1.9.2p0 :044 > item_deleted = array.delete_at(1)
 => "B" 
1.9.2p0 :045 > array
 => ["A", "C"] 
1.9.2p0 :047 > item_deleted
 => "B" 

Please accept the other answer.

share|improve this answer
Thanks for the extra examples. – Linuxios Jun 12 '12 at 1:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.