You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

10 lines
211 B

package solutions
//merges the 2 lists in one(in the end of the first list)
func ListMerge(l1 *List, l2 *List) {
if l1.Head == nil {
l1.Head, l1.Tail = l2.Head, l2.Tail
return
}
l1.Tail.Next = l2.Head
}