removing subset transactions form file
- by user324887
I have a file containing data as follows 
10 20 30 40 70 
20 30 70 
30 40 10 20 
29 70 
80 90 20 30 40 
40 45 65 10 20 80 
45 65 20 
I want to remove all subset transaction from this file.
output file should be like follows 
10 20 30 40 70 
29 70 
80 90 20 30 40
40 45 65 10 20 80 
Where records like 
20 30 70 
30 40 10 20 
45 65 20 
are removed because of they are subset of other records.