You are viewing a single comment's thread. Return to all comments →
Almost exactly the same:
N, X = map(int, input().strip().split()) L = [] for i in range(X): L.append(map(float, input().strip().split())) for e in zip(*L): print(sum(e) / X)
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
Zipped!
You are viewing a single comment's thread. Return to all comments →
Almost exactly the same: