What is the best way to accomplish this in Ruby? Array1 contains few numbers Array2 contains unsorted numbers. We want to find out how often each element of Array1 shows up in Array2.
Example:
Array1 = [0,1,2,3]
Array2 = [0,0,0,3,3,3,2,1,0,3,6,1,3]
Result = {"0"=>4, "1"=>2, "2"=>1, "3"=>5}
Is there a better optimal way to do this than:
- picking each element of
Array1 - iterating over
Array2 - incrementing a counter each time elements match
Example just shows few number but I want to find out best way to do this for a very large array set.
nlognif you use Mergesort principle. – uDaY Mar 25 '12 at 19:00O(n). – Niklas B. Mar 25 '12 at 19:08