Linear algebra
-
Practice>Python>Numpy>Linear Algebrahackerrank.com 2019. 4. 25. 12:55
hackerrank.com Linear Algebra Problem Link : https://www.hackerrank.com/challenges/np-linear-algebra/problem Difficulty : Easy Tip Use numpy.linalg.det() np.set_printoptions(legacy='1.13') Checking answer is using old style, please set 1.13 Solution import numpy as np N = int(input()) m = np.array([input().split() for _ in range(N)], float) np.set_printoptions(legacy='1.13') print(np.linalg.det(..