What will be the output of the following code snippet?
def solve(a):
 a = [1, 3, 5]
 a = [2, 4, 6]
 print(a)
 solve(a)
 print(a)

Posted on by