This is the full code:
def checkRow(table, r, pos, word): # done for you!
for i in range(0, len(word)):
if table[r][pos+i] != word[i]:
return False
return True
I know the bracket mean the index value (in this case r some value of the index table) but what does a bracket next to another bracket mean? (table[r][pos+i])