我們需要寫一個 JavaScript 函數,該函數接受一個 n * n 字串字元矩陣和一個整數陣列(正且唯一)。
我們的函數應該建構一個由數字數組中存在從 1 開始的索引的字元組成的字串。
字元矩陣-
[ [‘a’, ‘b’, ‘c’, d’], [‘o’, ‘f’, ‘r’, ‘g’], [‘h’, ‘i’, ‘e’, ‘j’], [‘k’, ‘l’, ‘m’, n’] ];
數字數組-
[1, 4, 5, 7, 11]
應該傳回“adore”,因為這些是矩陣中數字數組指定的從1 開始的索引處出現的字符。
以下是程式碼- p>
現場示範
const arr = [ ['a', 'b', 'c', 'd'], ['o', 'f', 'r', 'g'], ['h', 'i', 'e', 'j'], ['k', 'l', 'm', 'n'] ]; const pos = [1, 4, 5, 7, 11]; const buildString = (arr = [], pos = []) => { const flat = []; arr.forEach(sub => { flat.push(...sub); }); let res = ''; pos.forEach(num => { res += (flat[num - 1] || ''); }); return res; }; console.log(buildString(arr, pos));
以下是控制台輸出-
adore
以上是在 JavaScript 中基於字元矩陣和數字數組構造字串的詳細內容。更多資訊請關注PHP中文網其他相關文章!