<!--your preparation HTML code goes here-->
var transform1 = (rowTemplate) => {
if (!rowTemplate?.length) {
return [[]];
}
const rows = rowTemplate.length;
const cols = rowTemplate[0].length;
const tiles = new Map();
for (let row = 0; row < rows; row++) {
for (let col = 0; col < cols; col++) {
const id = rowTemplate[row][col];
if (!tiles.has(id)) {
tiles.set(id, { positions: [] });
}
tiles.get(id)?.positions.push({ row, col });
}
}
const tilesByColumn = Array.from(tiles.keys()).sort((idA, idB) => {
const posA = tiles.get(idA)?.positions[0];
const posB = tiles.get(idB)?.positions[0];
return posA.col === posB.col
? posA.row - posB.row
: posA.col - posB.col;
});
const tilesByRow = Array.from(tiles.keys()).sort((idA, idB) => {
const posA = tiles.get(idA)?.positions[0];
const posB = tiles.get(idB)?.positions[0];
return posA.row === posB.row
? posA.col - posB.col
: posA.row - posB.row;
});
const tileMap = {};
tilesByRow.forEach((rowId, index) => {
tileMap[rowId] = tilesByColumn[index];
});
const result = Array(rows).fill(null)
.map(() => Array(cols).fill(null));
for (let row = 0; row < rows; row++) {
for (let col = 0; col < cols; col++) {
const originalId = rowTemplate[row][col];
result[row][col] = tileMap[originalId];
}
}
return result;
};
var t1 = [
["1", "1", "2", "3", "4", "4"],
["1", "1", "5", "6", "4", "4"]
];
for (var i=0; i < 10000; i++) {
transform1(t1);
}
var transform2 = (rowTemplate) => {
if (!rowTemplate?.length) return [[]];
const rows = rowTemplate.length;
const cols = rowTemplate[0].length;
const firstPositions = {};
for (let row = 0; row < rows; row++) {
for (let col = 0; col < cols; col++) {
const id = rowTemplate[row][col];
if (firstPositions[id] === undefined) {
firstPositions[id] = {row, col};
}
}
}
const uniqueIds = Object.keys(firstPositions);
const rowIds = [uniqueIds].sort((a, b) => {
const posA = firstPositions[a];
const posB = firstPositions[b];
return posA.row === posB.row ? posA.col - posB.col : posA.row - posB.row;
});
const colIds = [uniqueIds].sort((a, b) => {
const posA = firstPositions[a];
const posB = firstPositions[b];
return posA.col === posB.col ? posA.row - posB.row : posA.col - posB.col;
});
const tileMap = {};
for (let i = 0; i < rowIds.length; i++) {
tileMap[rowIds[i]] = colIds[i];
}
const result = Array(rows);
for (let row = 0; row < rows; row++) {
result[row] = new Array(cols);
for (let col = 0; col < cols; col++) {
result[row][col] = tileMap[rowTemplate[row][col]];
}
}
return result;
};
var t1 = [
["1", "1", "2", "3", "4", "4"],
["1", "1", "5", "6", "4", "4"]
];
for (var i=0; i < 10000; i++) {
transform2(t1);
}
const transform3 = (rowTemplate) => {
if (!rowTemplate?.length) {
return [];
}
const rows = rowTemplate.length;
const cols = rowTemplate[0].length;
const result = [];
for (let col = 0; col < cols; col++) {
for (let row = 0; row < rows; row++) {
result.push(rowTemplate[row][col]);
}
}
return result;
};
var t1 = [
["1", "1", "2", "3", "4", "4"],
["1", "1", "5", "6", "4", "4"]
];
for (var i=0; i < 10000; i++) {
transform3(t1);
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
transform1 | |
transform2 | |
transform3 |
Test name | Executions per second |
---|---|
transform1 | 72.4 Ops/sec |
transform2 | 98.8 Ops/sec |
transform3 | 3693.3 Ops/sec |
The benchmark provided tests the performance of three different JavaScript functions designed to transform a 2D array (called rowTemplate
) based on certain rules about how the elements are arranged. Below, I will explain each function, the differences between them, their pros and cons, and some considerations regarding their performance.
transform1
rowTemplate
. It then creates two sorted arrays: one sorted by rows and another by columns. Finally, it constructs a tileMap
that associates each unique ID with its respective position, which is then used to populate the result matrix.Map
for storing tile positions, which helps in quick lookups and modifications.transform2
firstPositions
) instead of a Map
. It records the first occurrence of each unique tile ID. This time, it only sorts once to produce the rowIds
and colIds
, then constructs a tileMap
for results.Map
.transform1
could enhance performance.transform1
.transform3
The performance results show the number of executions per second for each function:
rowTemplate
increases. Thus, the choice of function can depend on the expected size of input data.?.
(optional chaining) and const
are used, which are modern JavaScript features that improve code robustness and clarity.Set
for unique items could simplify logic in similar transformations.In summary, each of the three functions has its own trade-offs regarding performance, readability, and the complexity of the implemented logic. The optimal choice will depend on the specific needs of the application, data sizes, and the expected frequency of such transformations.