Given a linked list, reverse the nodes of a k-group at a time and return its 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 the remaining nodes should remain as is.
Word Count: 0