I have a list of 5 lists:
X = [['a','b','c'],['a','d','e'],['a','x','f'],['g','h','j'],['y','u','i']]
I'm trying to find out how to get a list showing the elements that exists in 60% of the lists in X.
So I'd want it to return one element ['a'] because the element 'a' exists within 3 of the 5 lists i.e 'a' exists in 60% of the lists in X.