My issue
I am not able to import and hence, use Numpy library.
error shown
ModuleNotFoundError: No module named ‘numpy’
My code
# cook your dish here
import numpy as np
for _ in range(int(input())):
N = int(input())
l = list(map(int, input().split()))
lgcd = np.gcd.reduce(l)
Problem Link: STRNG Problem - CodeChef