Răspuns:def find_max (L):
max = 0
for x in L:
if x > max:
max = x
return max
Explicație: inlocuieste x cu 0 sau 1