func isPail(head *ListNode) bool { curr := head ints := []int{} for curr != nil { ints = append(ints,&...