Array Mathematics
-
Practice>Python>Numpy>Array Mathematicshackerrank.com 2019. 3. 12. 12:44
hackerrank.comArray MathematicsProblem link : https://www.hackerrank.com/challenges/np-array-mathematics/problemDifficulty : Easy Tip/ this is division, result return as floating point// this is integer division, result as int Solution import numpy N, M = list(map(int, input().split(' '))) A = numpy.array([input().split(' ') for _ in range(N)], int) B = numpy.array([input().split(' ') for _ in r..