Even though above solution is right, it faces the problem of TLE. To searchforthe scramble string collections, we have too much uncessary search, which is quite expensive inthisproblem. Actually, we could use a more easy way to solvethisproblem. Andthisis a typical recursive problem. Since ...