Web M&M
https://mam.matfyz.cz
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.
13 lines
201 B
13 lines
201 B
1 year ago
|
def otec_syn(otec, syn):
|
||
|
bratr = otec.first_child
|
||
|
syn.succ = bratr
|
||
|
otec.first_child = syn
|
||
|
syn.save()
|
||
|
otec.save()
|
||
|
|
||
|
|
||
|
def add_first_child(node, child):
|
||
|
node.first_child = child
|
||
|
node.save()
|
||
|
return
|