Tagged Questions
11
votes
8answers
378 views
Any built-in function to generate successive sublists from a list?
Given
lst = {a, b, c, d}
I'd like to generate
{{a}, {a, b}, {a, b, c}, {a, b, c, d}}
but using built-in functions only, ...
1
vote
2answers
127 views
Combining lists with common elements efficiently [duplicate]
Possible Duplicate:
Computing the equivalence classes of the symmetric transitive closure of a relation
I am required to process sets consisting of 2-element subsets of integers by ...
7
votes
3answers
240 views
how to efficiently apply function to all pairs of a set (and collect the results)
To build a graph, I need to apply a function f[a_, b_] to all pairs of a list (3500 elements). The function itself returns a link ...
23
votes
6answers
996 views
How to select minimal subsets?
I am a newbie, so please point me in the right direction if you feel this question has been answered somewhere else before. Here goes:
Suppose I have a list like this:
...
6
votes
3answers
413 views
Subsets of a list
Consider the following demand of products for the next four months.
data={1,20,3,40};
I could produce the whole demand in the first months, leading to the ...