Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
native_second_index solution in Clear category for Second Index by Jon_Red
def second_index(text:str,symbol:str)->[int,None]:
'''returns the second index of a symbol in a given text'''
if text.count(symbol)>1:return text.find(symbol,text.find(symbol)+1)
if __name__=='__main__':
# self-checks
assert second_index('sims','s')==3,'First'
assert second_index('find the river','e')==12,'Second'
assert second_index('hi',' ')is None,'Third'
assert second_index('hi mayor',' ')is None,'Fourth'
assert second_index('hi mr Mayor',' ')==5,'Fifth'
July 20, 2020
Comments: