Hi all,
I know there is a way to filter all permutes to get the unique one, but my question is a little more than that. Supposed I have a list of urls as below:
http://www.abc.com/123
http://www.def.com/223
http://www.abc.com/456
http://www.def.com/556
http://www.qwe.com/667
Given that the first and third urls are on the same domain (also second and forth), but the path is different. Is it anyway to remove all of the permutations from the same domain and keep the first one only? I expect the result to be:
http://www.abc.com/123
http://www.def.com/223
http://www.qwe.com/667
Thank you.