Given two strings s and t, transform string s into string t using the following operation any number of times:
s and sort it in place so the characters are in ascending order.
"14234" results in "12344".Return true if it is possible to transform s into t. Otherwise, return false.
A substring is a contiguous sequence of characters within a string.
s.length == t.length1 <= s.length <= 10^5s and t consist of only digits.s = "84532", t = "34852"trues = "34521", t = "23415"trues = "12345", t = "12435"false