https://leetcode.com/problems/rotate-list/ Rotate List - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com node 목록과 임의의 정수가 주어졌을 때, 임의의 정수만큼 목록을 rotation 시켜 목록을 반환하는 문제다. 예상과 정답이 다르지 않은 방법이였다. [C++] /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *n..