Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Second Index by cactusson
def second_index(text: str, symbol: str) -> [int, None]:
result = text.find(symbol, text.find(symbol) + 1)
return result if result >= 0 else None
April 9, 2020