2 lines
75 B
Python
2 lines
75 B
Python
|
def longueur_ajout(T1: list, T2: list) -> int:
|
||
|
return len(T1) + len(T2)
|