fork download
  1. f=lambda n,x:n and f(n-1,sum(zip(x,x[len(x)/2:]),()))or x
  2.  
  3. print(f(2,[]))
Success #stdin #stdout 0.02s 9016KB
stdin
Standard input is empty
stdout
[]