5 lines
85 B
Python
5 lines
85 B
Python
T1 = [5,3,4,1]
|
|
T2 = [1,2]
|
|
|
|
def longueur_ajout(T1: list, T2: list) -> int:
|
|
return |