We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
n, m, p = list(map(int, input().split()))
l1 = []
l2 = []
for i in range(n):
l1.append(list(map(int,input().split())))
for j in range(m):
l2.append(list(map(int,input().split())))
arr1 = np.array(l1)
arr2 = np.array(l2)
print(np.concatenate((arr1, arr2), axis=0))
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Concatenate
You are viewing a single comment's thread. Return to all comments →
import numpy as np
n, m, p = list(map(int, input().split())) l1 = [] l2 = [] for i in range(n): l1.append(list(map(int,input().split()))) for j in range(m): l2.append(list(map(int,input().split()))) arr1 = np.array(l1) arr2 = np.array(l2) print(np.concatenate((arr1, arr2), axis=0))