Groovy去除重复数据

def list = [a, b, c, c, c,d,e,e]  
// [a, b, c, d, e] 
list.unique()  

Grizzly

Never say never!