Skip to content

Instantly share code, notes, and snippets.

@rooksoto
Created January 8, 2017 01:06
Show Gist options
  • Save rooksoto/55c48dbc703be816a4c2fc20e98185d8 to your computer and use it in GitHub Desktop.
Save rooksoto/55c48dbc703be816a4c2fc20e98185d8 to your computer and use it in GitHub Desktop.
HackerRank Cracking The Coding Interview #1
/**
* Created by rook on 1/7/17.
*/
import java.util.*;
public class ArrayLeftRotationSolution {
/*
Renamed some variables to make it easier
for me to follow the code
*/
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
// Size of the array
int n = scanner.nextInt();
// Number of rotations
int k = scanner.nextInt();
// Array
int a[] = new int[n];
// Creates the array from k number
// of console inputs
for (int i = 0; i < n; i++) {
a[i] = scanner.nextInt();
}
a = rotate(a, n, k);
for (int item : a) {
System.out.print(item + " ");
}
}
private static int[] rotate(int[] a, int n, int k) {
int[] solution = a;
int temp;
int rotations = 0;
while (rotations < k) {
rotations++;
temp = solution[0];
for (int i = 0; i < solution.length - 1; i++) {
solution[i] = solution[i + 1];
}
solution[solution.length-1] = temp;
}
return solution;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment