We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
  • HackerRank Home

    HackerRank

  • |
  • Prepare
  • Certify
  • Compete
  • Hiring developers?
  1. Prepare
  2. Tutorials
  3. 30 Days of Code
  4. Day 7: Arrays

Day 7: Arrays

Problem
Submissions
Leaderboard
Discussions
Editorial
Tutorial

Objective
Today, we will learn about the Array data structure. Check out the Tutorial tab for learning materials and an instructional video.

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

Example

Print 4 3 2 1. Each integer is separated by one space.

Input Format

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

Constraints

Constraints

  • , where is the integer in the array.

Output Format

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

Sample Input

4
1 4 3 2

Sample Output

2 3 4 1

Author

[deleted]

Difficulty

Easy

Max Score

30

Submitted By

458526

Need Help?


View tutorial
View discussions
View editorial
View top submissions

rate this challenge

MORE DETAILS

Download problem statement
Download sample test cases
Suggest Edits
  • Blog
  • Scoring
  • Environment
  • FAQ
  • About Us
  • Support
  • Careers
  • Terms Of Service
  • Privacy Policy