Given a string that represents a sms message and an integer k that represents some threshold, return a list of strings where each string represents an SMS message and ends with a signature indicating which text out of the total number of texts the current text is.

Words cannot be broken up.

Example
s = "I love leetcode"
k =10

Output: ["I love (1/2)", "leetcode (2/2)"]
Comments (3)