What's a nice way to merge two sorted arrays in ActionScript (specifically ActionScript 3.0)? The resulting array should be sorted and without duplicates.
|
|
To merge (concatenate) arrays, use Below are two examples of how you can concatenate arrays and remove duplicates at the same time. More convenient way: (you can use
Slightly faster way: (you can loop through the arrays yourself and use
|
|||
|
|
This is kind of an simple algorithm to write. I would be surprised if there were a more direct way to do this in Actionscript.
|
|||
|
|
