I simply need to remove the rows that are repeated in an array but maintain one of them, I can't use unique because I need to maintain the order. Example
1 a234 125
1 a123 265
1 a234 125
1 a145 167
1 a234 125
2 a189 547
2 a189 547
3 a678 567
3 a357 569
I need this output
1 a234 125
1 a123 265
1 a145 167
2 a189 547
3 a678 567
3 a357 569