#include <iostream>
#include <iomanip>
#include "matrix.h"
using namespace std;
Matrix :: Matrix() {
cnt++;
row_size = maxRowSize;
col_size = maxColSize;
for (int r = 0; r < getRowSize(); r++) {
for (int c = 0; c < getColumnSize(); c++) {
matrix[r][c] = rand() % 10 + 1; Continue reading
Day: September 22, 2021
Programming – Jupyter Notebook Task
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"# Loading the required packages\n",
Continue reading