We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Group(), Groups() & Groupdict()
Group(), Groups() & Groupdict()
Sort by
recency
|
245 Discussions
|
Please Login in order to post a comment
Here's my code:
Intenté hacerlo asà pero falla en el input 'init' y en el 'commit' cuando lo pruebo en un editor de código (VS code) funciona perfecto pero no pasa el test ¿A alguien mas le pasó lo mismo? import re cadena = str(input()) print((lambda m: m.group(1) if m else -1)(re.search(r'(\w)(?=\1)', cadena)))
I managed to abuse the subscriptability of re.search: