Skip to main content

All Questions

Tagged with
4 votes
2 answers
185 views

Finding which items have at least one common value with other items

I have the following collection : ...
tigrou's user avatar
  • 421
3 votes
2 answers
622 views

Countable and uncountable sets in .NET (IEnumerable and Predicate)

There is a full featured support of countable sets in .NET: IEnumerable<T>. What about uncountable sets; sets defined by predicate? How can they be ...
Dmitry Nogin's user avatar
  • 6,131
5 votes
1 answer
3k views

Producing the intersection of several sequences

Based on this SO answer I have created a method that produce the set intersection of several sequences: ...
tigrou's user avatar
  • 421
7 votes
2 answers
560 views

Convert a list of sets into the minimum list of non-intersecting sets

I have a list of sets. The same items may appear in multiple sets. I want to transform this into a new list of sets where: Each item only appears once in the entire list of sets. For each set in ...
Andrew Shepherd's user avatar