Max - is the order in your output important? If you use first convert your cell array of strings to a single string using strjoin and then use unique to determine the unique characters, you would get
unique(strrep(strjoin(x'),' ',''))
ans =
adeiorst
Note that we use strrep to replace/remove all the space characters in the joined string.