I\'m trying to find the first repeated character in my string and output that character using python. When checking my code, I can see I\'m not index the last character of my co
Nice one-liner generator:
l = 'acbdc' next(e for e in l if l.count(e)>1)
Or following the rules in the comments to fit the "abba" case:
l = 'acbdc' next(e for c,e in enumerate(l) if l[:c+1].count(e)>1)