Say I have three lists,
> a
[[1]]
begin end
3 5
9 10
11 14
[[2]]
begin end
3 7
14 18
19 24
[[3]]
begin end
6 9
14 22
18 30
What I am trying to find is the intersection of all of the "begin" columns, so in this case the desired output would be something like
"3" "14"
I am aware of the solution offered at How to find common elements from multiple vectors?; however, this solution assumes that the number of lists is static. If the number of lists I have here were to change (say, to 5 lists, each one with similar columnar layout), how would I find the intersection?