This repository has been archived on 2024-08-23. You can view files and clone it, but cannot push or open issues or pull requests.

12 lines
190 B
Python

from random import randint
import numpy as np
SIZE = 10
a = [randint(0, 100_000) for _ in range(SIZE**2)]
a = np.array(a)
a = a.reshape((SIZE, SIZE))
print(a)
print(np.min(a), np.max(a))