Skip to content

Commit f6da184

Browse files
0 added
1 parent 351102d commit f6da184

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Numpy/Zeros and Ones/Solution.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import numpy
2+
3+
nums = tuple(map(int, input().split()))
4+
print(numpy.zeros(nums, dtype=numpy.int))
5+
print(numpy.ones(nums, dtype=numpy.int))

0 commit comments

Comments
 (0)