I am trying to line up 2 sets of values wherer the 2 sets might contain the
same values. so for example:
set 1 set 2
1 2
2 5
3 7
5 10

The result should be
set 1 set 2
1
2 2
3
5 5
7
10
Any suggestions on how to get this result?