Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
The Hidden Word solution in Clear category for The Hidden Word by iskenderunbtr
def checkio(text, word):
# find horizontal
horizontal=text.lower().replace(' ','').split('\n')
for ind,item in enumerate(horizontal):
if word in item:
return [ind+1,item.find(word)+1,ind+1,item.find(word)+len(word)]
#add * to equalize the number of columns
maxHorLen=len(max(horizontal))
temp=[]
for item in horizontal:
if len(item)
July 28, 2020
Comments: