Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Array Reversal #7

Open
ndrohith09 opened this issue Oct 17, 2022 · 5 comments
Open

Array Reversal #7

ndrohith09 opened this issue Oct 17, 2022 · 5 comments
Assignees
Labels
medium question Further information is requested

Comments

@ndrohith09
Copy link
Member

Given an array, of size n , reverse it.
Example: If array, arr=[1,2,3,4,5] , after reversing it, the array should be, arr=[5,4,3,2,1] .

Input Format

The first line contains an integer, n, denoting the size of the array. The next line contains n space-separated integers denoting the elements of the array.

Constraints

image

Output Format

The output is handled by the code given in the editor, which would print the array.

Sample Input 0

6
16 13 7 2 1 12 

Sample Output 0

12 1 2 7 13 16 

Explanation 0

Given array, arr = [16,13,7,2,1,12] . After reversing the array, arr = [12,1,2,7,13,16]

Sample Input 1

7
1 13 15 20 12 13 2 

Sample Output 1

2 13 12 20 15 13 1 

Sample Input 2

8
15 5 16 15 17 11 5 11 

Sample Output 2

11 5 11 17 15 16 5 15
@ndrohith09 ndrohith09 added the question Further information is requested label Oct 17, 2022
@Yogiraj587
Copy link
Contributor

Yogiraj587 commented Oct 17, 2022

I would like to solve this in C.

@rgsivaraman
Copy link
Contributor

rgsivaraman commented Oct 18, 2022

I would like to solve it using java

@IndexPosition
Copy link
Contributor

I would like to solve this in Python.

@rgsivaraman
Copy link
Contributor

I would like to solve it using C++

@shubhangNarain
Copy link
Contributor

Hey @ndrohith09 can you please assign this issue to me?

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
medium question Further information is requested
Projects
None yet
Development

No branches or pull requests

5 participants