9 lines
No EOL
186 B
TypeScript
9 lines
No EOL
186 B
TypeScript
import {TwoDimensionVector} from "./2d-array";
|
|
|
|
export class Matrix {
|
|
items: TwoDimensionVector = []
|
|
|
|
constructor(items: TwoDimensionVector) {
|
|
this.items = items;
|
|
}
|
|
} |