vendredi 5 février 2021

Add element to function in place C++

Add element to function in place C++ Python code:

l1 = [1, 2, 3]
l2 = l1 + [4]
print(l2) #[1, 2, 3, 4]

l3 = l1+l2
print(l3) #[1, 2, 3, 1, 2, 3, 4]

Is there a way to do this in C++

Aucun commentaire:

Enregistrer un commentaire