Given strings s and t, return a vector of all positions in which t occurs in s. For
example, if s is "mississippi" and t is "is", the result should contain 1 and 4 because
"is" starts at index 1 and 4 inside the string "mississippi". You may assume that t is not empty.