challenge 2d-array

This commit is contained in:
Lorenzo Iovino 2024-01-23 16:38:36 +01:00
parent 10d13dc384
commit 069cfb45fe
7 changed files with 229 additions and 41 deletions

9
src/2d-array/matrix.ts Normal file
View file

@ -0,0 +1,9 @@
import {TwoDimensionVector} from "./2d-array";
export class Matrix {
items: TwoDimensionVector = []
constructor(items: TwoDimensionVector) {
this.items = items;
}
}