재귀
![[LeetCode] 25. Reverse Nodes in k-Group](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FWAVPo%2FbtrQd8n9kM4%2FD0SRO5NggnPOS5nnh6k7I1%2Fimg.jpg)
[LeetCode] 25. Reverse Nodes in k-Group
25. Reverse Nodes in k-Group Hard Given the head of a linked list, reverse the nodes of the list k at a time, and return the modified list. k is a positive integer and is less than or equal to the length of the linked list. If the number of nodes is not a multiple of k then left-out nodes, in the end, should remain as it is. You may not alter the values in the list's nodes, only nodes themselves..