The question is to choose the data type of position of a word in a sentence in the “Paragraph Words” dataset.
The given answer is Integer.
But how about multiple occurrences of a word in a sentence.
eg, "The apple is red and it is sweet."
Here the position of "is" is [3, 7].
It is also ambiguous whether the position is expressed in terms of word count or char position.
If its char position, then it can be a record of start and end positions.
eg, {start:11, end:12}