Discuss / Python / 被大佬碾压了

被大佬碾压了

Topic source
L = [1]while True:    yield L    L = [1] + [L[n] + L[n + 1] for n in range(len(L) - 1)] + [1]


  • 1

Reply