87.js
/** ------------------------------------------------------------------------------
*
* 2023-03-30
* Scramble String
* https://leetcode.com/problems/scramble-string/description/
*
------------------------------------------------------------------------------ */
/**
* @param {string} s1
* @param {string} s2
* @return {boolean}
*/
var isScramble = function (s1, s2) {};
console.log(isScramble("great", "rgeat"));