mungdong

Results 2 comments of mungdong

golang ```go /** * Definition for singly-linked list. * type ListNode struct { * Val int * Next *ListNode * } */ func reverseKGroup(head *ListNode, k int) *ListNode { if...

🔗 参考:https://zhuanlan.zhihu.com/p/678894421