mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
20 lines
275 B
Go
20 lines
275 B
Go
package main
|
|
|
|
/**
|
|
* Definition for singly-linked list.
|
|
* type ListNode struct {
|
|
* Val int
|
|
* Next *ListNode
|
|
* }
|
|
*/
|
|
func middleNode(head *ListNode) *ListNode {
|
|
x := head
|
|
y := head
|
|
|
|
for y != nil && y.Next != nil {
|
|
x = x.Next
|
|
y = y.Next.Next
|
|
}
|
|
|
|
return x
|
|
}
|