Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Clear solution in Clear category for Second Index by ksc38317
def second_index(text: str, symbol: str) -> [int, None]:
return (text.find(symbol, text.find(symbol) + 1) if text.count(symbol) > 1 else None)
July 2, 2019
Comments: