Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for The Hidden Word by kalauroma7997
from itertools import zip_longest
def checkio(verse,word):
verse = verse.lower().replace(' ', '').split()
for n, row in enumerate(verse):
ind = row.find(word)
if ind != -1: return [n+1, ind+1, n+1, ind+len(word)]
for n, col in enumerate(zip_longest(*verse, fillvalue=' ')):
ind = ''.join(col).find(word)
if ind != -1: return [ind+1, n+1, ind+len(word), n+1]
#These "asserts" using only for self-checking and not necessary for auto-testing
if __name__ == '__main__':
assert checkio("""DREAMING of apples on a wall,
And dreaming often, dear,
I dreamed that, if I counted all,
-How many would appear?""", "ten") == [2, 14, 2, 16]
assert checkio("""He took his vorpal sword in hand:
Long time the manxome foe he sought--
So rested he by the Tumtum tree,
And stood awhile in thought.
And as in uffish thought he stood,
The Jabberwock, with eyes of flame,
Came whiffling through the tulgey wood,
And burbled as it came!""", "noir") == [4, 16, 7, 16]
Nov. 13, 2020
Comments: