
Given two strings s and t , transform string s into string t using the following operation any number of times:
Choose a non-empty substring in s and sort it in place so the characters are in ascending order .
For example, applying the operation on the underlined substring in "1 4234 " results in "1 2344 " .
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.