mirror of https://github.com/01-edu/public.git
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.
11 lines
211 B
11 lines
211 B
5 years ago
|
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
|
||
|
}
|