Skip to content

Commit

Permalink
Numpy!
Browse files Browse the repository at this point in the history
  • Loading branch information
snehalmastud authored Feb 23, 2020
1 parent 2f192e5 commit 2987d3b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Numpy/Linear Algebra/Solution.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import numpy as np

np.set_printoptions(legacy='1.13')

n = int(input())
array = np.array([input().split() for _ in range(n)], float)
print(np.linalg.det(array))

0 comments on commit 2987d3b

Please sign in to comment.