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 c162329 commit bd34eb8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Numpy/Zeros and Ones/Solution.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import numpy
N = tuple(map(int, input().split()))
print(numpy.zeros(N, int))
print(numpy.ones(N, int))

0 comments on commit bd34eb8

Please sign in to comment.