var addToArrayForm = function(A, K) { // K -> [a,b,c] let B = K.toString().split('').map(value => +value); let result = []; let maxLen = Math.max(A.length, ...
確定! 回上一頁