hackerrank.com
Practice>Python>Numpy>Concatenate
건이두
2019. 3. 28. 12:30
728x90
Concatenate
Problem Link : https://www.hackerrank.com/challenges/np-concatenate/problem
Difficulty : Easy
Tip
- Create input for creating numpy array like below
- a1 = [input().split() for _ in range(N)]
- so far a1 is string, need to convert it to int
- arr1 = numpy.array(a1, int)
- Concatenate arr1 and arr2 :)
Solution
728x90