(size, maxRandomValue)
| 38 | |
| 39 | ## Create matrix with specified size and random data |
| 40 | def fillMatrix(size, maxRandomValue): |
| 41 | return [[random.randrange(maxRandomValue) for x in range(size)] for e in range(size)] |
| 42 | |
| 43 | ## Print matrix |
| 44 | def printMatrix(matrix): |