forked from UNN/2026-rff_mp
12 lines
182 B
Python
12 lines
182 B
Python
|
|
def ll_insert(head, name, phone):
|
||
|
|
{'name': name, 'phone': phone}
|
||
|
|
pass
|
||
|
|
|
||
|
|
def ll_find(head, name):
|
||
|
|
pass
|
||
|
|
|
||
|
|
def ll_delete(head, name):
|
||
|
|
pass
|
||
|
|
|
||
|
|
def ll_list_all(head):
|
||
|
|
pass
|