bai 3 - 6
s = ' cho meo ga chuot vit ngan'
s = s.replace(" ","")
print(s)
out = []
for c in s:
if s.count(c) == 1:
out += c
print(out)
INFO
s = ' cho meo ga chuot vit ngan'
s = s.replace(" ","")
print(s)
out = []
for c in s:
if s.count(c) == 1:
out += c
print(out)