-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path025.js
More file actions
39 lines (34 loc) · 742 Bytes
/
025.js
File metadata and controls
39 lines (34 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* Definition for singly-linked list.
* function ListNode(val) {
* this.val = val;
* this.next = null;
* }
*/
/**
* @param {ListNode} head
* @param {number} k
* @return {ListNode}
*/
var reverseKGroup = function(head, k) {
if (k === 1) return head;
_reverseKGroup = (head, k) => {
let temp = k;
let values = [];
let tempNode = head;
while(temp > 0 && tempNode != null) {
values.unshift(tempNode.val);
tempNode = tempNode.next;
--temp;
}
if (values.length !== k) return;
tempNode = head;
values.forEach(value => {
tempNode.val = value;
tempNode = tempNode.next;
});
_reverseKGroup(tempNode, k);
}
_reverseKGroup(head, k);
return head;
};