I got this array:
@array = [["1003", "4"], ["963", "3"], ["1006", "1"], ["1064", "1"], ["1095", "1"], ["963", "http://www.google.com/1"], ["1003", "http://www.google.com/2"]]
and i need this as result:
@array = [["1003", "http://www.google.com/2"], ["963", "http://www.google.com/1"]]
- Matching every [0] with each other, if it fits set "http: link" to [1].
- Delete all entrys with no matching.
How is this possible?