We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 351102d commit f6da184Copy full SHA for f6da184
Numpy/Zeros and Ones/Solution.py
@@ -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