trying to remove duplicate items from list: `result.filterIndexed{ i, n -> nums.indexOf(n) == i }...
w
trying to remove duplicate items from list:
result.filterIndexed{ i, n -> nums.indexOf(n) == i }
l
Isn't
result.distinct()
what you are searching for?
w
Yeah. I didn't know that even existed 😛
thanks!