Skip to content

Commit 263e2a4

Browse files
committed
add problem
1 parent b479223 commit 263e2a4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

go/delete-middle-node-of-linked-list.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ type ListNode struct {
66
Next *ListNode
77
}
88

9+
// https://leetcode.com/problems/delete-the-middle-node-of-a-linked-list/
910
func deleteMiddle(head *ListNode) *ListNode {
1011
if head.Next == nil {
1112
return nil

0 commit comments

Comments
 (0)