题目: Give a string, you can choose to split the string after one character or two adjacent characters, and make the string to be composed of only one character or two characters. Output all possible results. 样例 Given the string "123" return [["1","2",&...