小明同学
小明同学
https://leetcode-cn.com/problems/reverse-linked-list/ ```go func reverseList(head *ListNode) *ListNode { if head == nil { return head } previous := head current := head.Next head.Next = nil for current != nil { p...
The idea is similar, cc #8160
cc #8292 , and this need reviewers.
whether this can be solved via using hook?
> @ashokponkumar This proposal will be discussed at the [Helm dev weekly meeting](https://github.com/helm/helm#community-discussion-contribution-and-support) on this Thursday, the 16th. It would be great if you could attend to pitch the proposal....