You are viewing a single comment's thread. Return to all comments →
import math import os import random import re import sys if __name__ == '__main__': n = int(input().strip()) arr = list(map(int, input().rstrip().split())) arrs=arr[::-1] for i in arrs: print(i,end=" ")
Seems like cookies are disabled on this browser, please enable them to open this website
Day 7: Arrays
You are viewing a single comment's thread. Return to all comments →