Added missing files and removed unnessesary ones
This commit is contained in:
11
Python/pyton_test/task10.py
Normal file
11
Python/pyton_test/task10.py
Normal 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))
|
Reference in New Issue
Block a user