有一个4x4的面板,总共16个字母。在此数组中,[2,1]代表第三行第二列中的字母。
const coordPairs = [
[ [2, 1], [4, 1] ]
[ [4, 0], [4, 1], [4, 2], [4, 3] ]
[ [0, 0], [0, 1], [0, 2] ],
[ [1, 0], [3, 0], [4, 0] ]
]
试图弄清楚如何将[2,1]之类的对链接到游戏板上的单个字母,该字母由16个字符串(字母)的数组表示。
最终目标是使函数根据游戏板和您提供的坐标为单词生成字符串。
带有注释的JSFiddle:https://jsfiddle.net/8euxzgy2/4/
答案 0 :(得分:1)
假定这是零个索引方阵。您可以输入rows * coord[0] + coord[1]
的数量:
let str = "abcdefghijklonop"
let rows = 4
const coordPairs = [[0, 0], [2, 1], [3, 1] ];
/* a b c d
* e f g h
* i j k l
* m n o p */
letters = coordPairs.map(coord => str[coord[0]* rows + coord[1]])
console.log(letters)