You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
436 B
TypeScript
17 lines
436 B
TypeScript
export const culculateMatrix = <T>(arr: T[], colNum: number): T[][] => {
|
|
if (colNum < 1) {
|
|
throw Error('colNum cound not be smaller than 1')
|
|
}
|
|
const len = arr.length
|
|
const rowNum = Math.ceil(len / colNum)
|
|
let curIndex = 0
|
|
let curRow = 0
|
|
const res: T[][] = []
|
|
while (curIndex <= len && curRow < rowNum) {
|
|
res[curRow] = arr.slice(curIndex, curIndex + colNum)
|
|
curIndex += colNum
|
|
curRow++
|
|
}
|
|
return res
|
|
}
|