There are multiple ways to rotate array by k times. Here I am using one of the approach which called reverse array approach. First check if k steps is within limit of reverse array. If it is not, then ...
🚀 Day 13 of #100DaysOfCode 🚀 LeetCode 189: Rotate Array Given an integer array nums, rotate the array to the right by k steps, where k is non-negative.