You are viewing a single comment's thread. Return to all comments →
Only the return satement is needed to complete the code in Pypy3
import os def aVeryBigSum(ar): return (sum(ar)) if __name__ == '__main__': fptr = open(os.environ['OUTPUT_PATH'], 'w') ar_count = int(input().strip()) ar = list(map(int, input().rstrip().split())) result = aVeryBigSum(ar) fptr.write(str(result) + '\n') fptr.close()
Seems like cookies are disabled on this browser, please enable them to open this website
A Very Big Sum
You are viewing a single comment's thread. Return to all comments →
Only the return satement is needed to complete the code in Pypy3