I am working with Google Sheets and I would like to get a list with the unique items of another list. Namely the input is:
List = ['Nick','George','George','Nick','Nick','George','Nick','Alex']
The output will be :
[Nick, George, Alex]
Right now I am using a simple loop to check whether an element appears more than once. But I am sure there is going to be a more clever way.