/** * @param head ListNode类 * @param k int整型 * @return ListNode类 */ function reverseGroup(head, k) { // write code here }