Hackerrank - Practice - Data Structure - Arrays - #1 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Hackerrank - Practice - Data Structure - Arrays - #1

An array is a type of data structure that stores elements of the same type in a contiguous block of memory. In an array, , of size , each memory location has some unique index, (where ), that can be referenced as (you may also see it written as ). Given an array, , of integers, print each element in reverse order as a single line of space-separated integers. Note: If you've already solved our C++ domain's Arrays Introduction challenge, you may want to skip this. Input Format The first line contains an integer, (the number of integers in ). The second line contains space-separated integers describing . Constraints Output Format Print all integers in in reverse order as a single line of space-separated integers. Sample Input 4 1 4 3 2 Sample Output 2 3 4 1

13th Sep 2017, 12:19 PM
S Liu
S Liu - avatar
3 Answers
13th Sep 2017, 12:20 PM
S Liu
S Liu - avatar
13th Sep 2017, 12:33 PM
S Liu
S Liu - avatar
0
import sys n = int(input().strip()) arr = [int(arr_temp) for arr_temp in input().strip().split(' ')] for i in reversed(arr): print(i,end=' ')
8th Dec 2020, 11:33 PM
Sowmya