# your code goes here

s = 'adhdhcmnhlkgmg,gk'
def find_singles(string):
  for char in set(string):
    if string.count(char) == 1:
      yield char

print list(find_singles(s))
