Guest User

Untitled

a guest
Oct 16th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. def firstUniqueChar(st):
  2. return [x for x in list(st) if list(st).count(x) == 1][0]
  3.  
  4. print firstUniqueChar("chickheni")
Add Comment
Please, Sign In to add comment