2019-05-27 글쓴이 TED HONG [Hackerrank] Left Rotation 배열 a 중에 특정한 숫자 n을 지정한 횟수 d 만큼 왼쪽으로 로테이션 시키는 문제 class Solution { static void Main(string[] args) { string[] nd = Console.ReadLine().Split(' '); int n = Convert.ToInt32(nd[0]); int d = Convert.ToInt32(nd[1]); int[] a = Array.ConvertAll(Console.ReadLine().Split(' '), aTemp => Convert.ToInt32(aTemp)) ; int[] result = GetRotateArray(n, d, a); Console..