I need a function that will take a list as for example [1,1,2,2] and return preferably [2,2] or [(2*1),(2*2)] but [2,0,2,0] will suffice as long as it is possibly to see how many doublets there are in a list.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
You could try sorting the list first using ListMergeSort's sort function. Once you have a sorted list, it's straightforward to find the frequencies of each element using a simple recursive function. |
|||||||
|