Is it possible to find the intersection of 3 sets in c++ in a single line?

前端 未结 0 1551
一生所求
一生所求 2020-12-19 14:12

I have 3 sets A,B,C. I will need to find Union (intersection(A,B), intersection(B,C), intersection(B,C) )

(A ∩ B) ∪ (B ∩ C) ∪ (A ∩ C) in set notation.

Is it po

相关标签:
回答
  • 消灭零回复
提交回复
热议问题