Hello guys,
I have a list of orders in which the sku's are sorted ASC and put inside an array stored on a table.
Like this :
sku | |
order_1 | (1,3,4,5,8) |
order_2 | (1,3,4) |
order_3 | (1,3,4,7) |
order_4 | (1,4,6,7) |
order_5 | (4,8,9) |
order_6 | (1,3,4,8) |
Is there a way to build in Flexsim a function/algorithm that finds an order commonality array ?
For this example the function/algorithm should return (1,3,4).
Thanks.