[1][2] Labs #338

Merged
VladimirGub merged 32 commits from skorohodovsa/2026-rff_mp:main into develop 2026-05-30 11:56:43 +00:00
Showing only changes of commit ae9b2a46b6 - Show all commits

View File

@ -0,0 +1,13 @@
def create_node(
name: str,
phone: str,
next: dict = None
):
return {
'name': name,
'phone': phone,
'next': next
}