Example 2: Input: s = "acbbc"Output: "abaab"Explanation: We apply the operation on the substring starting at index 1, and ending at index 4 inclusive. It can be proven that the resulting string is the lexicographically smallest. Example 3: Input: s = "leetcode"Output: "kddsbncd"Expla...