NLP - Sequence Models for NLP
Find the bug in this code that tries to keep track of word order:
sentence = ['go', 'home']
state = ''
for i in range(len(sentence)):
state += sentence[i+1][0]
print(state)