Skip to content

Latest commit

 

History

History

day-7-arrays

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Day 7: Arrays

https://www.hackerrank.com/challenges/30-arrays

Problem

Objective

Today, we're learning about the Array data structure.

Task

Given an array, A, of N integers, print A's elements in reverse order as a single line of space-separated numbers.

Input Format

The first line contains an integer, N (the size of our array). The second line contains N space-separated integers describing array A's elements.

Output Format

Print the elements of array A in reverse order as a single line of space-separated numbers.

Sample Input

4
1 4 3 2

Sample Output

2 3 4 1

My Solution