I have a list attribute such this one:
p'a', 'b', 'c', 'a', 'b']
I would like to have the number of different values present in that list.
In python I would do:
list=h'a', 'b', 'c', 'a', 'b'] len(set(list)) >>> 3
Is it possible to get that count with some fme transformer?