Quick actions

cmd+k|ctrl+k

Navigation

Languages

bai 3 - 6

Snippet info

Language

Python

Visibility

public

Author

hccc19

Created

2016-10-23T13:37:39Z

Updated

2016-10-23T13:37:39Z

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