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
95 views

Splitting a string by a repeated regex in Ruby

I would like to parse text and separate it into tasks and subtasks: 'Asubsubsubtask:Bsubtask:Ctask:D'.split(/((sub)*task)\:/i) #=> ["A", "subsubsubtask", "sub", "B", "subtask", "sub", "C", "task", ...