/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @return string字符串一维数组 */ function getSolution( n ) { // write code here const result = []; function moveDisks(num, from, to, via) { if (num === 1) { result.push( `move from ${from} to ${to}`); } else {...