小明同学

Results 6 comments of 小明同学

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...

> @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....