Added missing files and removed unnessesary ones

This commit is contained in:
2023-07-16 16:44:42 +03:00
parent c3fa5367c3
commit 199dd693e4
41 changed files with 1442 additions and 50 deletions

View File

@ -0,0 +1,11 @@
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))