StringBuilder VI
Another problem that leads to TLE if using standard string (remember that string concatenation is very costly since there are multiple objects being created), but if you switch to StringBuilder, which allows you to make changes to its elements (it isn't immutable), you can achieve a very quick result. Using it and at the very end convert it to regular String. Code is down below, cheers, ACC. Maximum Bitwise XOR After Rearrangement - LeetCode You are given two binary strings s and t , each of length n . You may rearrange the characters of t in any order, but s must remain unchanged . Return a binary string of length n representing the maximum integer value obtainable by taking the bitwise XOR of s and rearranged t . Example 1: Input: s = "101", t = "011" Output: "110" Explanation: One optimal rearrangement of t is "01...