FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

GitHub Viewer

//https://leetcode.com/problems/rotate-array/ class Solution { public void rotate(int[] nums, int k) { for(int i=0;i=0){ nums[j+1] = nums[j]; j--; } nums[0] = temp; } } }

Back | FazBrowse Home | New Git URL