[FEATURE REQUEST] Array Right Rotation
What would you like to Propose?
I would to like add the implementation of Array Right Rotation under the "others" cateogry
Issue details
Problem statement :
Given an array, rotate the array to the right by k steps, where k is non-negative Eg: Input: [1,2,3,4,5,6,7] and k = 3 Output: [5,6,7,1,2,3,4] Explanation: rotate 1 steps to the right: [7,1,2,3,4,5,6] rotate 2 steps to the right: [6,7,1,2,3,4,5] rotate 3 steps to the right: [5,6,7,1,2,3,4]
Additional Information
No response
I want to complete this. Please assign it to me.
Can you assign me this issue ??
@rishav2803 I will assign @ppiippoo to this issue since I could not find your PR.
@rishav2803 I will assign @ppiippoo to this issue since I could not find your PR. Should I raise one?
@ppiippoo will you update your PR #4682? Or can @rishav2803 create a new one? Obviously we can only merge one.
I think I have the optimal solution for this issue. I'm new to this open source contribution, if this is not the optimal way of asking please do point me and tell me the right way to do so.
#4682
The issue has been solved!!