1 | static <A> bool allSetsDisjoint(Iterable<Set<A>> l) { |
2 | new Set<A> seen; |
3 | for (Set<A> set : l) |
4 | for (A a : set) |
5 | if (!seen.add(a)) false; |
6 | true; |
7 | } |
download show line numbers debug dex old transpilations
Travelled to 8 computer(s): bhatertpkbcr, cfunsshuasjs, gwrvuhgaqvyk, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt
No comments. add comment
Snippet ID: | #1020571 |
Snippet name: | allSetsDisjoint |
Eternal ID of this version: | #1020571/3 |
Text MD5: | 8cb37f30ce1bfceecbf8e59778cc7a78 |
Author: | stefan |
Category: | javax |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2018-12-27 01:43:48 |
Source code size: | 162 bytes / 7 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 265 / 292 |
Version history: | 2 change(s) |
Referenced in: | [show references] |