hi . i have a mining that create dimension each time and immediately pushing to an array , i want to increase quantity if data be same
my mining each time create [x,y,qty]
b = []
b.push [10,10,1]
b.push[10,10,1]
b.push[11,4,1]
i want to this result: [ [10,10,2], [11,4,1] ]