I want to remove duplicate rows in the following data.
Data:
a a
a b
a c
a d
a e
b a
b b
b c
b d
b e
c a
c b
c c
c d
c e
d a
d b
d c
d d
d e
e a
e b
e c
e d
e e
The output should be column1 and column2 different. and it should not be the following data.
a b
a c
a d
a e
b a
b c
b d
b e
c a
c b
c d
c e
d a
d b
d c
d e
e a
e b
e c
e d
because a in column 1 and b in column2 is same as b in column1 and a in column2 or else simply i mean to say 1+2 is same as 2+1.
So, the output should be
a,b
a,c
a,d
a,e
b,c
b,d
b,e
c,d
c,e
d,e