coolblaze03's picture
Upload folder using huggingface_hub
1514a0b verified
Raw
History Blame Contribute Delete
148 Bytes
def first_repeated_char(str1):
for index, c in enumerate(str1):
if str1[:index + 1].count(c) > 1:
return c
return 'None'