Tagged Questions

4
votes
7answers
1k views

How can I efficiently extract repeated elements in a Ruby array?

I have an array like [1,1,1,2,4,6,3,3] and I would like to get the list of repeated elements, in this case [1,3]. I wrote this: my_array.select{|obj|my_array.count(obj)>1}.uniq But it is ...
0
votes
1answer
32 views

Count the number of times a number is repeating in a vector

I have created a vector containing zeros and 1's using the following command in a for loop. G(:,i)=rand(K,1)<rand; Since this is part of a larger problem at a particular stage I need to count ...